mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 18:41:38 +01:00
57 lines
903 B
SCSS
57 lines
903 B
SCSS
.hide-token-confirmation {
|
|
min-height: 250.72px;
|
|
border-radius: 4px;
|
|
background-color: var(--white);
|
|
box-shadow: 0 1px 7px 0 rgba(0, 0, 0, 0.5);
|
|
|
|
&__container {
|
|
padding: 24px 27px 21px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
&__identicon {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
&__symbol {
|
|
@include Paragraph;
|
|
|
|
color: var(--tundora);
|
|
text-align: center;
|
|
margin-bottom: 7.5px;
|
|
}
|
|
|
|
&__title {
|
|
@include H3;
|
|
|
|
height: 30px;
|
|
width: 271.28px;
|
|
color: var(--tundora);
|
|
text-align: center;
|
|
margin-bottom: 10.5px;
|
|
}
|
|
|
|
&__copy {
|
|
@include Paragraph;
|
|
|
|
min-height: 41px;
|
|
width: 318px;
|
|
color: var(--scorpion);
|
|
text-align: center;
|
|
}
|
|
|
|
&__buttons {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
margin-top: 15px;
|
|
width: 100%;
|
|
}
|
|
|
|
&__button {
|
|
margin: 0 5px;
|
|
}
|
|
}
|