diff options
author | Dan <danjm.com@gmail.com> | 2017-09-20 16:05:27 +0800 |
---|---|---|
committer | Chi Kei Chan <chikeichan@gmail.com> | 2017-09-24 08:33:50 +0800 |
commit | 0eeba3771c2396c12de3f254dbfaae957344411d (patch) | |
tree | e07191adb37e501b46449dd68689446f00c05933 /ui/app/css | |
parent | e1077836ce916e2bd788451e3f365324024a1c0c (diff) | |
download | tangerine-wallet-browser-0eeba3771c2396c12de3f254dbfaae957344411d.tar tangerine-wallet-browser-0eeba3771c2396c12de3f254dbfaae957344411d.tar.gz tangerine-wallet-browser-0eeba3771c2396c12de3f254dbfaae957344411d.tar.bz2 tangerine-wallet-browser-0eeba3771c2396c12de3f254dbfaae957344411d.tar.lz tangerine-wallet-browser-0eeba3771c2396c12de3f254dbfaae957344411d.tar.xz tangerine-wallet-browser-0eeba3771c2396c12de3f254dbfaae957344411d.tar.zst tangerine-wallet-browser-0eeba3771c2396c12de3f254dbfaae957344411d.zip |
Exports private key modal opens from dropdown.
Diffstat (limited to 'ui/app/css')
-rw-r--r-- | ui/app/css/itcss/components/modal.scss | 73 |
1 files changed, 38 insertions, 35 deletions
diff --git a/ui/app/css/itcss/components/modal.scss b/ui/app/css/itcss/components/modal.scss index c0a5aa1ef..0afd778e9 100644 --- a/ui/app/css/itcss/components/modal.scss +++ b/ui/app/css/itcss/components/modal.scss @@ -214,45 +214,48 @@ // Account Details Modal -.account-modal-container .qr-header { - margin-top: 9px; - font-size: 20px; -} +.account-modal-container { -.account-modal-container .qr-wrapper { - margin-top: 5px; -} + .qr-header { + margin-top: 9px; + font-size: 20px; + } -.account-modal-container .ellip-address-wrapper { - display: flex; - justify-content: center; - border: 1px solid $alto; - padding: 5px 10px; - font-family: 'Montserrat Light'; - margin-top: 7px; - width: 286px; -} + .qr-wrapper { + margin-top: 5px; + } -.account-modal-container .qr-ellip-address { - width: 247px; - border: none; - font-family: 'Montserrat Light'; - font-size: 14px; -} + .ellip-address-wrapper { + display: flex; + justify-content: center; + border: 1px solid $alto; + padding: 5px 10px; + font-family: 'Montserrat Light'; + margin-top: 7px; + width: 286px; + } -.account-modal-container .btn-clear { - min-height: 28px; - font-size: 14px; - border-color: $curious-blue; - color: $curious-blue; - border-radius: 2px; - flex-basis: 100%; - width: 75%; - margin-top: 17px; - padding: 10px 22px; - height: 44px; - width: 235px; - font-family: 'Montserrat Light'; + .qr-ellip-address, .ellip-address { + width: 247px; + border: none; + font-family: 'Montserrat Light'; + font-size: 14px; + } + + .btn-clear { + min-height: 28px; + font-size: 14px; + border-color: $curious-blue; + color: $curious-blue; + border-radius: 2px; + flex-basis: 100%; + width: 75%; + margin-top: 17px; + padding: 10px 22px; + height: 44px; + width: 235px; + font-family: 'Montserrat Light'; + } } .account-modal-divider { |