diff options
author | Dan <danjm.com@gmail.com> | 2018-02-28 01:04:31 +0800 |
---|---|---|
committer | Dan <danjm.com@gmail.com> | 2018-02-28 01:42:45 +0800 |
commit | 746c3e5f1803e9b3712d22a4e4dd7ab43e84e060 (patch) | |
tree | 6ffa9d0404fe3994a4cdff519e9ce2addf36f6e0 /ui | |
parent | c789bf1842acc6603da0db680052962713d46ac1 (diff) | |
download | tangerine-wallet-browser-746c3e5f1803e9b3712d22a4e4dd7ab43e84e060.tar.gz tangerine-wallet-browser-746c3e5f1803e9b3712d22a4e4dd7ab43e84e060.tar.zst tangerine-wallet-browser-746c3e5f1803e9b3712d22a4e4dd7ab43e84e060.zip |
Body width container in first time flow is consistent with app bar.
Diffstat (limited to 'ui')
-rw-r--r-- | ui/app/css/itcss/components/newui-sections.scss | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/ui/app/css/itcss/components/newui-sections.scss b/ui/app/css/itcss/components/newui-sections.scss index 73faebe8b..ecf5e1036 100644 --- a/ui/app/css/itcss/components/newui-sections.scss +++ b/ui/app/css/itcss/components/newui-sections.scss @@ -290,3 +290,27 @@ $wallet-view-bg: $alabaster; .token-balance__amount { padding-right: 6px; } + + +// first time +.first-view-main { + display: flex; + flex-direction: row-reverse; + justify-content: space-between; + + @media screen and (max-width: 575px) { + height: 100%; + } + + @media screen and (min-width: 576px) { + width: 85vw; + } + + @media screen and (min-width: 769px) { + width: 80vw; + } + + @media screen and (min-width: 1281px) { + width: 62vw; + } +}
\ No newline at end of file |