mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-25 03:20:23 +01:00
f7849a0b7c
* Add error that redirects users to Import NFT page when they attempt to add an NFT on the Import Token page
72 lines
1.1 KiB
SCSS
72 lines
1.1 KiB
SCSS
@import 'token-list/index';
|
|
|
|
.import-token {
|
|
$self: &;
|
|
|
|
&__custom-token-form {
|
|
padding: 8px 16px 16px;
|
|
|
|
input[type='number']::-webkit-inner-spin-button {
|
|
-webkit-appearance: none;
|
|
display: none;
|
|
}
|
|
|
|
input[type='number']:hover::-webkit-inner-spin-button {
|
|
-webkit-appearance: none;
|
|
display: none;
|
|
}
|
|
& #{$self}__decimal-warning {
|
|
margin-top: 5px;
|
|
}
|
|
}
|
|
|
|
&__search-token {
|
|
padding: 16px 16px 16px 16px;
|
|
}
|
|
|
|
&__token-list {
|
|
margin-top: 16px;
|
|
}
|
|
|
|
&__custom-symbol {
|
|
&__label-wrapper {
|
|
display: flex;
|
|
flex-flow: row nowrap;
|
|
}
|
|
|
|
&__label {
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
&__edit {
|
|
flex: 1 1 auto;
|
|
text-align: right;
|
|
color: var(--primary-blue);
|
|
padding-right: 4px;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
&__link {
|
|
@include H7;
|
|
|
|
display: inline;
|
|
color: var(--primary-blue);
|
|
padding-left: 0;
|
|
}
|
|
|
|
&__token-detection-announcement {
|
|
margin-bottom: 16px;
|
|
margin-top: 0;
|
|
}
|
|
|
|
&__collectible-address-error-link {
|
|
color: var(--primary-blue);
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
color: var(--Blue-400);
|
|
}
|
|
}
|
|
}
|