mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 11:01:41 +01:00
dbc7446b9a
The popup view would expand beyond the width of the viewport when expanding a transaction. This bug was introduced in #8139 when I removed the `min-width: 0` property from the `home__container` class; this property was giving the parent permission to shrink that div below the size of its content. Instead of restoring that property, the parent component is no longer using `display: flex`. Flexbox was never useful here, as this is just a wrapper div around a wrapper div, both with identical sizes. The default display type of `block` produces the desired behaviour with less rules.
228 lines
3.7 KiB
SCSS
228 lines
3.7 KiB
SCSS
$sub-mid-size-breakpoint: 667px;
|
|
$sub-mid-size-breakpoint-range: "screen and (min-width: #{$break-large}) and (max-width: #{$sub-mid-size-breakpoint})";
|
|
|
|
/*
|
|
NewUI Container Elements
|
|
*/
|
|
|
|
// Component Colors
|
|
$wallet-view-bg: $alabaster;
|
|
|
|
.app {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
overflow-x: hidden;
|
|
position: relative;
|
|
align-items: center;
|
|
}
|
|
|
|
// Main container
|
|
.main-container {
|
|
z-index: $main-container-z-index;
|
|
font-family: Roboto;
|
|
}
|
|
|
|
.main-container::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
|
|
.main-container-wrapper {
|
|
display: flex;
|
|
justify-content: center;
|
|
flex: 1 0 auto;
|
|
min-height: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
// wallet view and sidebar
|
|
|
|
.wallet-view {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: 32 1 32%;
|
|
width: 0;
|
|
background: $wallet-view-bg;
|
|
z-index: 200;
|
|
position: relative;
|
|
|
|
[dir='rtl'] & i.fa.fa-clipboard {
|
|
/*rtl:ignore*/
|
|
margin-left: 0 !important;
|
|
/*rtl:ignore*/
|
|
margin-right: 8px !important;
|
|
}
|
|
|
|
@media screen and (min-width: 576px) {
|
|
overflow-y: scroll;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
@media #{$sub-mid-size-breakpoint-range} {
|
|
min-width: 160px;
|
|
}
|
|
}
|
|
|
|
@media screen and (min-width: 576px) {
|
|
.wallet-view::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.wallet-view-title-wrapper {
|
|
flex: 0 0 25px;
|
|
}
|
|
|
|
.wallet-view-title {
|
|
margin-left: 15px;
|
|
font-size: 16px;
|
|
|
|
// No title on mobile
|
|
@media screen and (max-width: 575px) {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.wallet-view.sidebar-right {
|
|
flex: 1 0 230px;
|
|
background: rgb(250, 250, 250);
|
|
z-index: $sidebar-z-index;
|
|
position: fixed;
|
|
top: 66px;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
opacity: 1;
|
|
visibility: visible;
|
|
will-change: transform;
|
|
overflow-y: auto;
|
|
box-shadow: rgba(0, 0, 0, .15) 2px 2px 4px;
|
|
width: 85%;
|
|
height: calc(100% - 56px);
|
|
|
|
[dir='rtl'] & {
|
|
/* rtl:ignore */
|
|
left: 15%;
|
|
}
|
|
}
|
|
|
|
// main-container media queries
|
|
|
|
@media screen and (min-width: 576px) {
|
|
.lap-visible {
|
|
display: flex;
|
|
}
|
|
|
|
.phone-visible {
|
|
display: none;
|
|
}
|
|
|
|
.main-container {
|
|
width: 85vw;
|
|
height: 90vh;
|
|
box-shadow: 0 0 7px 0 rgba(0, 0, 0, .08);
|
|
}
|
|
}
|
|
|
|
@media screen and (min-width: 769px) {
|
|
.main-container {
|
|
width: 80vw;
|
|
height: 82vh;
|
|
box-shadow: 0 0 7px 0 rgba(0, 0, 0, .08);
|
|
}
|
|
}
|
|
|
|
@media screen and (min-width: 1281px) {
|
|
.main-container {
|
|
width: 62vw;
|
|
height: 82vh;
|
|
box-shadow: 0 0 7px 0 rgba(0, 0, 0, .08);
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 575px) {
|
|
.lap-visible {
|
|
display: none;
|
|
}
|
|
|
|
.phone-visible {
|
|
display: flex;
|
|
}
|
|
|
|
.main-container {
|
|
width: 100%;
|
|
overflow-y: auto;
|
|
background-color: $white;
|
|
}
|
|
|
|
.main-container-wrapper {
|
|
flex: 1;
|
|
}
|
|
}
|
|
|
|
// account options dropdown
|
|
.account-options-menu {
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
margin: 5% 7% 0%;
|
|
}
|
|
|
|
.fiat-amount {
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.token-balance__amount {
|
|
padding: 0 6px;
|
|
}
|
|
|
|
// first time
|
|
.first-view-main {
|
|
display: flex;
|
|
flex-direction: row-reverse;
|
|
justify-content: space-between;
|
|
|
|
@media screen and (max-width: 575px) {
|
|
height: 100%;
|
|
}
|
|
|
|
@media screen and (min-width: 576px) {
|
|
width: 85vw;
|
|
}
|
|
|
|
@media screen and (min-width: 769px) {
|
|
width: 80vw;
|
|
}
|
|
|
|
@media screen and (min-width: 1281px) {
|
|
width: 62vw;
|
|
}
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
.first-view-main-wrapper {
|
|
display: flex;
|
|
width: 100%;
|
|
height: 100%;
|
|
justify-content: center;
|
|
padding: 0 10px;
|
|
background: white;
|
|
}
|