mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
4c9bf40688
* Initial commit * converted the component from class-based to functional. * Refactored component * Improved code and tests * Finished adding tests * Fixed eslint problems * Added back custodyLabels component * Fixed eslint problems * fixed ts lint problem * Fixed eslint problems * Added more tests and improved code * Added comments * Fixed eslint problems * Fixed eslint problems
24 lines
348 B
SCSS
24 lines
348 B
SCSS
.interactive-replacement-token-page {
|
|
opacity: 0.8;
|
|
|
|
&__item {
|
|
border-bottom: 1px solid --color-border-default;
|
|
|
|
&-clipboard {
|
|
background-color: transparent;
|
|
}
|
|
}
|
|
|
|
&__item:first-child {
|
|
margin-top: 12px;
|
|
}
|
|
|
|
&__item:last-child {
|
|
border: 0;
|
|
}
|
|
|
|
&__item:hover {
|
|
background-color: rgba(0, 0, 0, 0.03);
|
|
}
|
|
}
|