aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/css/itcss/components/account-menu.scss
diff options
context:
space:
mode:
authorChi Kei Chan <chikeichan@gmail.com>2017-10-18 13:36:53 +0800
committerChi Kei Chan <chikeichan@gmail.com>2017-10-18 13:38:07 +0800
commit085551b7e6b7dab21c21b99a40c4f79c413799d5 (patch)
tree88dd6397e8d2efcd0cc75812ee0ef0f87af06f87 /ui/app/css/itcss/components/account-menu.scss
parent5ee6e4d3b3d61d804340c22b73a608fb6b44a9b2 (diff)
downloadtangerine-wallet-browser-085551b7e6b7dab21c21b99a40c4f79c413799d5.tar.gz
tangerine-wallet-browser-085551b7e6b7dab21c21b99a40c4f79c413799d5.tar.zst
tangerine-wallet-browser-085551b7e6b7dab21c21b99a40c4f79c413799d5.zip
New Account modal
Diffstat (limited to 'ui/app/css/itcss/components/account-menu.scss')
-rw-r--r--ui/app/css/itcss/components/account-menu.scss63
1 files changed, 62 insertions, 1 deletions
diff --git a/ui/app/css/itcss/components/account-menu.scss b/ui/app/css/itcss/components/account-menu.scss
index 5ed42f627..857903ce1 100644
--- a/ui/app/css/itcss/components/account-menu.scss
+++ b/ui/app/css/itcss/components/account-menu.scss
@@ -39,6 +39,7 @@
font-size: 12px;
line-height: 23px;
padding: 0 24px;
+ font-weight: 200;
}
img {
@@ -50,8 +51,68 @@
display: flex;
flex-flow: column nowrap;
overflow-y: auto;
- height: 272px;
+ 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;
+ }
+ }
+
+ &__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;
+ flex: 0 0 auto;
+ }
+
+ .identicon {
+ margin: 0 12px 0 0;
+ flex: 0 0 auto;
+ }
+
+ &__name {
+ color: $white;
+ font-size: 18px;
+ font-weight: 200;
+ line-height: 16px;
+ }
+
+ &__balance {
+ color: $dusty-gray;
+ font-size: 14px;
+ line-height: 19px;
+ }
+
+ &__action {
+ font-size: 16px;
+ line-height: 18px;
+ font-weight: 200;
+ cursor: pointer;
}
}