aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorsdtsui <szehungdanieltsui@gmail.com>2017-08-05 03:57:16 +0800
committersdtsui <szehungdanieltsui@gmail.com>2017-08-05 03:57:16 +0800
commit0cd72db2d2aa575420befa687156cf2bd271b6dd (patch)
treef91003852424b56d93fc4f63fe3fd772e33e44f1 /ui
parent650956934cca250c729e51ed6dbb4a35d4f8d705 (diff)
downloadtangerine-wallet-browser-0cd72db2d2aa575420befa687156cf2bd271b6dd.tar.gz
tangerine-wallet-browser-0cd72db2d2aa575420befa687156cf2bd271b6dd.tar.zst
tangerine-wallet-browser-0cd72db2d2aa575420befa687156cf2bd271b6dd.zip
Adds early breakpoint from @frankiebee 's + @kumavis 's CR
Diffstat (limited to 'ui')
-rw-r--r--ui/app/css/lib.css24
1 files changed, 24 insertions, 0 deletions
diff --git a/ui/app/css/lib.css b/ui/app/css/lib.css
index 6fff4f56a..e7b3bab05 100644
--- a/ui/app/css/lib.css
+++ b/ui/app/css/lib.css
@@ -276,3 +276,27 @@ i.fa.fa-question-circle.fa-lg.menu-icon {
color: red;
}
+// Account Subsection + Tab Section Breakpoints Hack:
+// 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; // needs to remove default flex settings
+ width: 40%;
+ margin-left: 10px !important;
+ margin-right: 10px !important;
+ }
+
+ .tabSection {
+ flex: 0 0 auto !important; // needs to remove default flex settings
+ width: 49%;
+ min-width: 305px; // min-width needs to be low for an early break
+ margin-left: 10px !important;
+ margin-right: 10px !important;
+ }
+
+ .name-label {
+ width: 80%; // repositions dropdown after early break
+ }
+}