mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-26 12:29:06 +01:00
d4e12e55e8
* Initial changes to support Text component in import token component * linting issue fix * fix prettier linting issue * updated styles and attributes for boxProps * lint leading 0
27 lines
449 B
SCSS
27 lines
449 B
SCSS
.import-token {
|
|
flex-direction: column;
|
|
|
|
.actionable-message {
|
|
margin-top: 0;
|
|
|
|
&__message {
|
|
color: var(--color-text-default);
|
|
text-align: left;
|
|
}
|
|
}
|
|
|
|
&__contract-address {
|
|
border-radius: 8px;
|
|
background-color: var(--color-background-alternative);
|
|
padding: 5px 10px;
|
|
font-size: 0.75rem;
|
|
}
|
|
|
|
&__token-icon {
|
|
font-size: $font-size-h2;
|
|
margin-top: 24px;
|
|
width: 69px;
|
|
height: 69px;
|
|
}
|
|
}
|