diff options
author | brunobar79 <brunobar79@gmail.com> | 2018-08-17 07:39:52 +0800 |
---|---|---|
committer | brunobar79 <brunobar79@gmail.com> | 2018-08-17 07:39:52 +0800 |
commit | 2ea05e303dedfd75cad6fdfddfa82da2ee32e92d (patch) | |
tree | 74e77d49c0f80e709f08fd83bffc61dfe1a53aef /ui/app/css | |
parent | 837be704f531b0b8851d285f269ed48849b0a425 (diff) | |
download | tangerine-wallet-browser-2ea05e303dedfd75cad6fdfddfa82da2ee32e92d.tar tangerine-wallet-browser-2ea05e303dedfd75cad6fdfddfa82da2ee32e92d.tar.gz tangerine-wallet-browser-2ea05e303dedfd75cad6fdfddfa82da2ee32e92d.tar.bz2 tangerine-wallet-browser-2ea05e303dedfd75cad6fdfddfa82da2ee32e92d.tar.lz tangerine-wallet-browser-2ea05e303dedfd75cad6fdfddfa82da2ee32e92d.tar.xz tangerine-wallet-browser-2ea05e303dedfd75cad6fdfddfa82da2ee32e92d.tar.zst tangerine-wallet-browser-2ea05e303dedfd75cad6fdfddfa82da2ee32e92d.zip |
connect screen ready
Diffstat (limited to 'ui/app/css')
-rw-r--r-- | ui/app/css/itcss/components/new-account.scss | 63 |
1 files changed, 61 insertions, 2 deletions
diff --git a/ui/app/css/itcss/components/new-account.scss b/ui/app/css/itcss/components/new-account.scss index b9e6ac000..ded5d11b5 100644 --- a/ui/app/css/itcss/components/new-account.scss +++ b/ui/app/css/itcss/components/new-account.scss @@ -167,7 +167,6 @@ margin-top: 5px; margin-bottom: 15px; font-size: 22px; - text-align: center; } &__msg { @@ -178,6 +177,66 @@ } } + &__btn-wrapper { + flex: 1; + flex-direction: row; + display: flex; + } + + &__connect-btn { + background-color: #259De5; + color: #fff; + border: none; + width: 315px; + min-height: 54px; + font-weight: 300; + font-size: 14px; + margin-bottom: 20px; + margin-top: 20px; + border-radius: 5px; + display: flex; + flex: 1; + margin-left: 20px; + margin-right: 20px; + justify-content: center; + text-transform: uppercase; + } + + &__connect-btn.disabled { + cursor: not-allowed; + opacity: .5; + } + + &__btn { + background: #fbfbfb; + border: 1px solid #e5e5e5; + height: 100px; + width: 150px; + flex: 1; + display: flex; + align-items: center; + justify-content: center; + border-radius: 5px; + + &__img { + width: 95px; + } + } + + &__btn.selected { + border: 2px solid #00a8ee; + width: 149px; + } + + &__btn:first-child { + margin-right: 15px; + margin-left: 20px; + } + + &__btn:last-child { + margin-right: 20px; + } + &__hdPath { display: flex; flex-direction: row; @@ -255,7 +314,7 @@ } } - &__get-trezor { + &__get-hw { width: 100%; padding-bottom: 10px; padding-top: 10px; |