mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
ad28c81a39
Co-authored-by: Guillaume Roux <guillaumeroux123@gmail.com> Co-authored-by: George Marshall <george.marshall@consensys.net> Co-authored-by: David Walsh <davidwalsh83@gmail.com>
48 lines
826 B
SCSS
48 lines
826 B
SCSS
@import 'choose-account/index';
|
|
@import 'flask/snap-install/index';
|
|
@import 'redirect/index';
|
|
|
|
.permissions-connect {
|
|
width: 100%;
|
|
height: 100%;
|
|
position: relative;
|
|
background: var(--color-background-default);
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
@media screen and (min-width: $break-large) {
|
|
.page-container {
|
|
max-height: none;
|
|
min-height: auto;
|
|
}
|
|
}
|
|
|
|
&__top-bar {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
padding: 16px 16px 0 16px;
|
|
align-items: center;
|
|
}
|
|
|
|
&__back {
|
|
@include H7;
|
|
|
|
color: var(--color-text-default);
|
|
font-weight: bold;
|
|
cursor: pointer;
|
|
|
|
i {
|
|
margin-right: 10px;
|
|
}
|
|
}
|
|
|
|
&__page-count {
|
|
@include H7;
|
|
|
|
color: var(--color-icon-default);
|
|
grid-column: 2;
|
|
justify-self: end;
|
|
font-weight: bold;
|
|
}
|
|
}
|