1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
metamask-extension/ui/components/app/permission-page-container/index.scss
Maarten Zuidhoorn 8cda817f5c
Add hardcoded list of human-readable snap names (#17595)
* Add hardcoded list of human-readable snap names

* Make the text properly bold

* Small style fixes to approval screen

* Run yarn lint:fix

* Update snapshots
2023-02-06 11:05:57 +01:00

129 lines
2.0 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;
}
@include screen-sm-min {
width: 426px;
flex: 1;
&__footers {
display: flex;
flex-direction: column-reverse;
flex: 1;
padding-bottom: 20px;
justify-content: space-between;
}
}
&__title {
@include H4;
text-align: center;
margin-top: 32px;
width: 100%;
}
&__content {
display: flex;
overflow-y: auto;
flex-direction: column;
color: var(--color-text-default);
padding-left: 24px;
padding-right: 24px;
a,
a:hover {
color: var(--color-primary-default);
}
&__requested {
width: 100%;
text-align: left;
}
&__revoke-note {
margin-top: 60px;
}
&__permission {
display: flex;
align-items: center;
label {
@include H6;
margin-left: 16px;
color: var(--color-text-default);
}
}
}
& &__checkbox {
font-size: 1.4rem;
margin: 0;
}
&__content-container {
display: flex;
flex-direction: column;
align-items: center;
}
&__permissions-header {
@include H6;
color: var(--color-text-default);
}
&__permissions-container {
width: 100%;
display: flex;
flex-direction: column;
margin-top: 38px;
}
.page-container__footer {
align-items: center;
margin-top: 12px;
@include screen-sm-min {
border-top: none;
}
footer {
width: 100%;
}
}
@include screen-sm-max {
&__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;
}
}