_token.scss 863 Bytes
Newer Older
1
.token, .token_usd {
2
  display: flex;
3
4
5
  align-items: center;
  align-content: center;
  justify-content: center;
6

7
  .token_icon {
8
9
10
11
12
13
14
15
    width: (ms(0) * 1.3) + 1rem;
    height: (ms(0) * 1.3) + 1rem;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: center;
16

17
    img {
18
19
      display: block;
      margin: 0;
20
21
22
      height: (ms(0) * 1.3);
      width: auto;
    }
23
  }
24

25
  .token_name {
26
    padding-left: 0.325rem;
27
    height: ms(0) * 1.3;
28
29
30
31
    flex-grow: 1;
    color: $black;
    font-weight: 500;
  }
32

33
34
35
  .token_balance {
    font-family: $mono;
    color: $grey;
36
    height: ms(0) * 1.3;
37
  }
38

39
  .token_symbol, .token_symbol_usd {
40
    height: ms(0) * 1.3;
41
    font-size: ms(-2);
42
43
44
    &:before {
      content: ' ';
    }
45
  }
46
47
48
49

  .token_buttons {
    padding-left: 0.5rem;
  }
50
}