1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 11:46:13 +02:00
metamask-extension/ui/app/pages/permissions-connect/index.scss
Dan J Miller fda4c94670
Design improvements for the Connect flow (#8494)
* Design improvements for the Connect flow

* Make new-account-modal close a button

* Update e2e tests for auto select account on connect flow
2020-05-04 18:10:09 -02:30

45 lines
738 B
SCSS

@import 'choose-account/index';
.permissions-connect {
width: 100%;
height: 100%;
position: relative;
background: white;
display: flex;
flex-direction: column;
@media screen and (min-width: 576px) {
.page-container {
max-height: none;
min-height: auto;
}
}
&__top-bar {
display: grid;
grid-template-columns: 1fr 1fr;
padding: 16px 16px 0px 16px;
align-items: center;
}
&__back {
@extend %content-text;
color: $Grey-600;
cursor: pointer;
i {
margin-right: 10px;
}
}
&__page-count {
@extend %content-text;
font-size: 12px;
color: #6A737D;
grid-column: 2;
justify-self: end;
font-weight: bold;
line-height: 21px;
}
}