.network-display {
  &__container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: #f0f0f0;
    padding: 0 10px;
    border-radius: 4px;
    height: 25px;
  }

  &__name {
    font-size: .75rem;
    padding-left: 5px;
    color: black;
  }

  &__icon {
    height: 10px;
    width: 10px;
    border-radius: 10px;

    &--mainnet {
      background-color: $dexon-purple;
    }

    &--testnet {
      background-color: $dexon-purple;
    }
  }
}