diff options
author | kumavis <kumavis@users.noreply.github.com> | 2018-03-14 01:42:59 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-14 01:42:59 +0800 |
commit | c1387cdc542c56e3da4a8da1f47023e5f5ea5665 (patch) | |
tree | 81925a26194f06615b74fb3b0f983f89b02c0dab /ui/app/css/itcss | |
parent | 50e21fa9d300078703bf56ab16ec315d0030d0af (diff) | |
parent | a07550d2abff0916af500eda6767cf32e0849335 (diff) | |
download | tangerine-wallet-browser-c1387cdc542c56e3da4a8da1f47023e5f5ea5665.tar tangerine-wallet-browser-c1387cdc542c56e3da4a8da1f47023e5f5ea5665.tar.gz tangerine-wallet-browser-c1387cdc542c56e3da4a8da1f47023e5f5ea5665.tar.bz2 tangerine-wallet-browser-c1387cdc542c56e3da4a8da1f47023e5f5ea5665.tar.lz tangerine-wallet-browser-c1387cdc542c56e3da4a8da1f47023e5f5ea5665.tar.xz tangerine-wallet-browser-c1387cdc542c56e3da4a8da1f47023e5f5ea5665.tar.zst tangerine-wallet-browser-c1387cdc542c56e3da4a8da1f47023e5f5ea5665.zip |
Merge pull request #3495 from alextsg/cb-290
Increase tap areas for menu buttons on mobile
Diffstat (limited to 'ui/app/css/itcss')
-rw-r--r-- | ui/app/css/itcss/components/hero-balance.scss | 3 | ||||
-rw-r--r-- | ui/app/css/itcss/components/newui-sections.scss | 22 |
2 files changed, 21 insertions, 4 deletions
diff --git a/ui/app/css/itcss/components/hero-balance.scss b/ui/app/css/itcss/components/hero-balance.scss index 4af0c2c55..a3f051361 100644 --- a/ui/app/css/itcss/components/hero-balance.scss +++ b/ui/app/css/itcss/components/hero-balance.scss @@ -5,9 +5,6 @@ flex-direction: column; justify-content: flex-start; align-items: center; - margin: .3em .9em 0; - // height: 80vh; - // max-height: 225px; flex: 0 0 auto; } diff --git a/ui/app/css/itcss/components/newui-sections.scss b/ui/app/css/itcss/components/newui-sections.scss index ecf5e1036..a6d03a6c7 100644 --- a/ui/app/css/itcss/components/newui-sections.scss +++ b/ui/app/css/itcss/components/newui-sections.scss @@ -51,6 +51,7 @@ $wallet-view-bg: $alabaster; cursor: pointer; display: flex; justify-content: center; + padding: 10px; } // wallet view and sidebar @@ -313,4 +314,23 @@ $wallet-view-bg: $alabaster; @media screen and (min-width: 1281px) { width: 62vw; } -}
\ No newline at end of file +} + +.unlock-screen-container { + z-index: $main-container-z-index; + font-family: Roboto; + display: flex; + justify-content: center; + align-items: center; + flex: 1 0 auto; + background: #f7f7f7; + width: 100%; +} + +.unlock-screen { + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + flex: 1 0 auto; +} |