mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
57 lines
958 B
SCSS
57 lines
958 B
SCSS
.notification-modal {
|
|
&__wrapper {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
position: relative;
|
|
border: 1px solid $alto;
|
|
box-shadow: 0 0 2px 2px $alto;
|
|
}
|
|
|
|
&__header {
|
|
background: $wild-sand;
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
padding: 30px;
|
|
font-size: 22px;
|
|
color: $nile-blue;
|
|
}
|
|
|
|
&__message {
|
|
padding: 20px;
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
font-size: 17px;
|
|
color: $nile-blue;
|
|
}
|
|
|
|
&__buttons {
|
|
display: flex;
|
|
justify-content: space-evenly;
|
|
width: 100%;
|
|
margin-bottom: 24px;
|
|
padding: 0 42px;
|
|
|
|
&__btn {
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
&__link {
|
|
color: $primary-blue;
|
|
}
|
|
|
|
.modal-close-x::after {
|
|
content: '\00D7';
|
|
font-size: 2em;
|
|
color: $dusty-gray;
|
|
position: absolute;
|
|
top: 25px;
|
|
right: 17.5px;
|
|
cursor: pointer;
|
|
}
|
|
}
|