1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 11:46:13 +02:00
metamask-extension/ui/components/app/collectibles-detection-notice/index.scss
Alex Donesky 1b6e58c417
Feat/collectibles the return (#12970)
* Wire collectibles frontend UI with controller data
2021-12-13 17:41:10 -06:00

32 lines
617 B
SCSS

.collectibles-detection-notice {
&__message {
position: relative;
padding: 0 1rem 1rem 1rem !important;
&__close-button {
background-color: transparent;
&::after {
position: absolute;
content: '\00D7';
font-size: 29px;
font-weight: 200;
color: $black;
background-color: transparent;
top: 0;
right: 12px;
cursor: pointer;
}
}
a.collectibles-detection-notice__message__link {
@include H6;
width: 60%;
padding: 0;
justify-content: flex-start;
font-weight: bold;
}
}
}