diff options
author | kumavis <kumavis@users.noreply.github.com> | 2017-08-05 04:21:47 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-05 04:21:47 +0800 |
commit | d7168d7c507bd4cef30e714a15a1b4a6f13a8f81 (patch) | |
tree | 1abe6267672a6d9f7bb5ab647cf3c7de447bb5f4 | |
parent | 650956934cca250c729e51ed6dbb4a35d4f8d705 (diff) | |
parent | 8cc3ae5988d652b73217e80df93a685d7e5a8422 (diff) | |
download | tangerine-wallet-browser-d7168d7c507bd4cef30e714a15a1b4a6f13a8f81.tar tangerine-wallet-browser-d7168d7c507bd4cef30e714a15a1b4a6f13a8f81.tar.gz tangerine-wallet-browser-d7168d7c507bd4cef30e714a15a1b4a6f13a8f81.tar.bz2 tangerine-wallet-browser-d7168d7c507bd4cef30e714a15a1b4a6f13a8f81.tar.lz tangerine-wallet-browser-d7168d7c507bd4cef30e714a15a1b4a6f13a8f81.tar.xz tangerine-wallet-browser-d7168d7c507bd4cef30e714a15a1b4a6f13a8f81.tar.zst tangerine-wallet-browser-d7168d7c507bd4cef30e714a15a1b4a6f13a8f81.zip |
Merge pull request #1863 from sdtsui/newui-early-break
Add early breakpoint from @frankiebee 's + @kumavis 's CR of #1835
-rw-r--r-- | ui/app/css/lib.css | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/ui/app/css/lib.css b/ui/app/css/lib.css index 6fff4f56a..81647d1c1 100644 --- a/ui/app/css/lib.css +++ b/ui/app/css/lib.css @@ -276,3 +276,30 @@ i.fa.fa-question-circle.fa-lg.menu-icon { color: red; } +/* + Hacky breakpoint fix for account + tab sections + Resolves issue from @frankiebee in + https://github.com/MetaMask/metamask-extension/pull/1835 + Please remove this when integrating new designs + */ + +@media screen and (min-width: 575px) and (max-width: 800px) { + .account-data-subsection { + flex: 0 0 auto !important; // reset flex + margin-left: 10px !important; // create additional horizontal space + margin-right: 10px !important; + width: 40%; + } + + .tabSection { + flex: 0 0 auto !important; + margin-left: 10px !important; + margin-right: 10px !important; + min-width: 285px; + width: 49%; + } + + .name-label { + width: 80%; + } +} |