aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/css/itcss/components/token-list.scss
blob: 2195dc1b872afd289f4346d2b4bdf4fa464c0f46 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
$wallet-balance-breakpoint: 890px;
$wallet-balance-breakpoint-range: "screen and (min-width: #{$break-large}) and (max-width: #{$wallet-balance-breakpoint})";

.token-list-item {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  transition: linear 200ms;
  background-color: rgba($wallet-balance-bg, 0);

  @media #{$wallet-balance-breakpoint-range} {
    padding: 10% 4%;
  }

  &--active {
    background-color: rgba($wallet-balance-bg, 1);
  }

  &__identicon {
    margin-right: 15px;
    border: '1px solid #dedede';
  }

  &__token-balance {
    font-size: 130%;
  }

  &__fiat-amount {
    margin-top: .25%;
    font-size: 105%;
  }
}