mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 19:10:22 +01:00
60 lines
1.0 KiB
SCSS
60 lines
1.0 KiB
SCSS
.permissions-connect-choose-account {
|
|
&__title {
|
|
@include H4;
|
|
}
|
|
|
|
&__cancel {
|
|
color: var(--color-error-default);
|
|
}
|
|
|
|
&__content {
|
|
display: flex;
|
|
overflow-y: auto;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
padding-left: 24px;
|
|
padding-right: 24px;
|
|
margin-top: 2px;
|
|
}
|
|
|
|
&__footer-container {
|
|
width: 100%;
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-end;
|
|
|
|
@media screen and (min-width: $break-large) {
|
|
flex-direction: column-reverse;
|
|
justify-content: space-between;
|
|
padding-bottom: 20px;
|
|
}
|
|
}
|
|
|
|
&__bottom-buttons {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
width: 100%;
|
|
padding-top: 16px;
|
|
padding-bottom: 16px;
|
|
margin-top: 12px;
|
|
border-top: 1px solid var(--color-border-muted);
|
|
|
|
@media screen and (min-width: $break-large) {
|
|
border-top: none;
|
|
}
|
|
|
|
button {
|
|
width: 124px;
|
|
}
|
|
|
|
.btn-secondary {
|
|
margin-left: 16px;
|
|
}
|
|
|
|
.btn-primary {
|
|
margin-right: 16px;
|
|
}
|
|
}
|
|
}
|