mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
31 lines
465 B
SCSS
31 lines
465 B
SCSS
|
.import-token {
|
||
|
flex-direction: column;
|
||
|
|
||
|
.actionable-message {
|
||
|
margin-top: 0;
|
||
|
|
||
|
&--danger {
|
||
|
border-color: $Red-300;
|
||
|
background: $Red-000;
|
||
|
}
|
||
|
|
||
|
&__message {
|
||
|
color: $Black-100;
|
||
|
text-align: left;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
&__contract-address {
|
||
|
border-radius: 8px;
|
||
|
background-color: $Grey-000;
|
||
|
padding: 5px 10px;
|
||
|
}
|
||
|
|
||
|
&__token-icon {
|
||
|
font-size: $font-size-h2;
|
||
|
margin-top: 24px;
|
||
|
width: 69px;
|
||
|
height: 69px;
|
||
|
}
|
||
|
}
|