aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/css/itcss/components/account-menu.scss
blob: 4752741aa5e9a123a401f237cbbb8b2bab8f9d76 (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
.account-menu {
  position: fixed;
  z-index: 100;
  top: 58px;
  width: 310px;

  @media screen and (max-width: 575px) {
    right: calc(((100vw - 100%) / 2) + 8px);
  }

  @media screen and (min-width: 576px) {
    right: calc((100vw - 85vw) / 2);
  }

  @media screen and (min-width: 769px) {
    right: calc((100vw - 80vw) / 2);
  }

  @media screen and (min-width: 1281px) {
    right: calc((100vw - 65vw) / 2);
  }

  &__icon {
    margin-left: 20px;
    cursor: pointer;
  }

  &__header {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
  }

  &__logout-button {
    border: 1px solid $dusty-gray;
    background-color: transparent;
    color: $white;
    border-radius: 4px;
    font-size: 12px;
    line-height: 23px;
    padding: 0 24px;
    font-weight: 300;
  }

  &__item-icon {
    width: 16px;
    height: 16px;
  }

  &__accounts {
    display: flex;
    flex-flow: column nowrap;
    overflow-y: auto;
    max-height: 240px;
    position: relative;
    z-index: 200;

    &::-webkit-scrollbar {
      display: none;
    }

    @media screen and (max-width: 575px) {
      max-height: 215px;
    }

    .keyring-label {
      margin-top: 5px;
      background-color: $dusty-gray;
      color: $black;
      font-weight: normal;
    }
  }

  &__account {
    display: flex;
    flex-flow: row nowrap;
    padding: 16px 14px;
    flex: 0 0 auto;

    @media screen and (max-width: 575px) {
      padding: 12px 14px;
    }
  }

  &__account-info {
    flex: 1 0 auto;
    display: flex;
    flex-flow: column nowrap;
    padding-top: 4px;
  }

  &__check-mark {
    width: 14px;
    margin-right: 12px;
    flex: 0 0 auto;
  }

  &__check-mark-icon {
    background-image: url("images/check-white.svg");
    height: 18px;
    width: 18px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin: 3px 0;
  }

  .identicon {
    margin: 0 12px 0 0;
    flex: 0 0 auto;
  }

  &__name {
    color: $white;
    font-size: 18px;
    font-weight: 300;
    line-height: 16px;
  }

  &__balance {
    color: $dusty-gray;
    font-size: 14px;
    line-height: 19px;
  }

  &__action {
    font-size: 16px;
    line-height: 18px;
    font-weight: 300;
    cursor: pointer;
  }
}