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

Finalize width of main container for all viewports

This commit is contained in:
sdtsui 2017-08-02 22:59:04 -07:00
parent b523faba13
commit c47f81b2e0

View File

@ -722,7 +722,7 @@ div.message-container > div:first-child {
} }
.main-container { .main-container {
width: 100%; position: absolute;
z-index: 18; z-index: 18;
box-shadow: 0 0 7px 0 rgba(0,0,0,0.08); box-shadow: 0 0 7px 0 rgba(0,0,0,0.08);
font-family: DIN OT; font-family: DIN OT;
@ -742,16 +742,22 @@ div.message-container > div:first-child {
} }
.main-container { .main-container {
// position: absolute; margin-top: 35px;
// margin-top: 35px; width: 85%;
// z-index: 18; }
// box-shadow: 0 0 7px 0 rgba(0,0,0,0.08); }
// font-family: DIN OT;
// display: flex; @media screen and (min-width: 769px) {
// flex-wrap: wrap; .main-container {
// align-items: stretch; margin-top: 35px;
// overflow-y: scroll; width: 80%;
// width: 100%; }
}
@media screen and (min-width: 1281px) {
.main-container {
margin-top: 35px;
width: 65%;
} }
} }
@ -765,7 +771,8 @@ div.message-container > div:first-child {
} }
.main-container { .main-container {
position: absolute;
margin-top: 35px; margin-top: 35px;
// position: relative;
width: 100%;
} }
} }