1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 03:36:18 +02:00
metamask-extension/ui/components/app/permission-page-container/index.scss
2021-04-28 14:53:59 -05:00

141 lines
2.1 KiB
SCSS

.permission-approval-container {
&.page-container {
display: flex;
border: none;
box-shadow: none;
width: 100%;
margin-top: 2px;
height: 100%;
flex-direction: column;
justify-content: space-between;
}
@media screen and (min-width: 576px) {
width: 426px;
flex: 1;
&__footers {
display: flex;
flex-direction: column-reverse;
flex: 1;
padding-bottom: 20px;
justify-content: space-between;
}
}
&__header {
display: flex;
flex-direction: column;
align-items: flex-end;
border-bottom: 1px solid $geyser;
padding: 9px;
}
&__title {
@include H4;
text-align: center;
margin-top: 32px;
width: 100%;
}
&__content {
display: flex;
overflow-y: auto;
flex-direction: column;
color: #7c808e;
padding-left: 24px;
padding-right: 24px;
a,
a:hover {
color: $dodger-blue;
}
&__requested {
text-align: left;
}
&__revoke-note {
margin-top: 60px;
}
&__permission {
display: flex;
align-items: center;
label {
@include H6;
margin-left: 16px;
color: $Black-100;
}
}
}
& &__checkbox {
font-size: 1.4rem;
margin: 0;
}
&__content-container {
display: flex;
flex-direction: column;
align-items: center;
}
&__permissions-header {
@include H6;
color: #6a737d;
}
&__permissions-container {
display: flex;
flex-direction: column;
margin-top: 38px;
}
.page-container__footer {
align-items: center;
margin-top: 12px;
@media screen and (min-width: 576px) {
border-top: none;
}
footer {
width: 100%;
justify-content: space-between;
button {
width: 124px;
}
}
}
@media screen and (max-width: 575px) {
&__title {
position: initial;
}
&__content-approval-visual {
margin-top: 16px;
}
.page-container__footer header {
padding: 0;
}
}
&__tooltip-body {
display: flex;
flex-direction: column;
}
&__bold-title-elements {
font-weight: bold;
}
}