1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Merge pull request #1863 from sdtsui/newui-early-break

Add early breakpoint from @frankiebee 's + @kumavis 's CR of #1835
This commit is contained in:
kumavis 2017-08-04 13:21:47 -07:00 committed by GitHub
commit d7168d7c50

View File

@ -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%;
}
}