diff options
author | Dan <danjm.com@gmail.com> | 2017-09-20 08:56:10 +0800 |
---|---|---|
committer | Chi Kei Chan <chikeichan@gmail.com> | 2017-09-22 07:45:18 +0800 |
commit | 24fd16b1bee31352ef7f364804eb5f06c08c3bf6 (patch) | |
tree | e7aef133a304d4af80b1a56360e72ed687571427 /ui/app/css | |
parent | 39afbea7aaf17cfee5d7fc11299cb82e657edd7e (diff) | |
download | tangerine-wallet-browser-24fd16b1bee31352ef7f364804eb5f06c08c3bf6.tar tangerine-wallet-browser-24fd16b1bee31352ef7f364804eb5f06c08c3bf6.tar.gz tangerine-wallet-browser-24fd16b1bee31352ef7f364804eb5f06c08c3bf6.tar.bz2 tangerine-wallet-browser-24fd16b1bee31352ef7f364804eb5f06c08c3bf6.tar.lz tangerine-wallet-browser-24fd16b1bee31352ef7f364804eb5f06c08c3bf6.tar.xz tangerine-wallet-browser-24fd16b1bee31352ef7f364804eb5f06c08c3bf6.tar.zst tangerine-wallet-browser-24fd16b1bee31352ef7f364804eb5f06c08c3bf6.zip |
Abstract account modal.
Diffstat (limited to 'ui/app/css')
-rw-r--r-- | ui/app/css/itcss/components/modal.scss | 57 |
1 files changed, 30 insertions, 27 deletions
diff --git a/ui/app/css/itcss/components/modal.scss b/ui/app/css/itcss/components/modal.scss index c85e61ae2..9f6ce54f5 100644 --- a/ui/app/css/itcss/components/modal.scss +++ b/ui/app/css/itcss/components/modal.scss @@ -175,8 +175,8 @@ font-size: 18px; } -// Account Details Modal -.account-details-modal-wrapper { +// Account Modal Container +.account-modal-container { display: flex; flex-direction: column; justify-content: flex-start; @@ -192,16 +192,38 @@ } } -.account-details-modal-wrapper .qr-header { +.account-modal-close::after { + content: '\00D7'; + font-size: 40px; + color: $dusty-gray; + position: absolute; + top: 10px; + right: 12px; + cursor: pointer; +} + +.account-modal-container .identicon { + position: relative; + left: 0; + right: 0; + margin: 0 auto; + top: -32px; + margin-bottom: -32px; +} + + +// Account Details Modal + +.account-modal-container .qr-header { margin-top: 9px; font-size: 20px; } -.account-details-modal-wrapper .qr-wrapper { +.account-modal-container .qr-wrapper { margin-top: 5px; } -.account-details-modal-wrapper .ellip-address-wrapper { +.account-modal-container .ellip-address-wrapper { display: flex; justify-content: center; border: 1px solid $alto; @@ -211,14 +233,14 @@ width: 286px; } -.account-details-modal-wrapper .qr-ellip-address { +.account-modal-container .qr-ellip-address { width: 254px; border: none; font-family: 'Montserrat Light'; font-size: 14px; } -.account-details-modal-wrapper .btn-clear { +.account-modal-container .btn-clear { min-height: 28px; font-size: 14px; border-color: $curious-blue; @@ -233,32 +255,13 @@ font-family: 'Montserrat Light'; } -.account-details-modal-divider { +.account-modal-divider { width: 100%; height: 1px; margin: 19px 0 8px 0; background-color: $alto; } -.account-details-modal-wrapper .identicon { - position: relative; - left: 0; - right: 0; - margin: 0 auto; - top: -32px; - margin-bottom: -32px; -} - -.account-details-modal-close::after { - content: '\00D7'; - font-size: 40px; - color: $dusty-gray; - position: absolute; - top: 10px; - right: 12px; - cursor: pointer; -} - // New Account Modal .new-account-modal-wrapper { display: flex; |