1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 03:36:18 +02:00
metamask-extension/ui/components/app/collectibles-detection-notice/index.scss

32 lines
624 B
SCSS
Raw Normal View History

.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: var(--black);
background-color: transparent;
top: 0;
right: 12px;
cursor: pointer;
}
}
a.collectibles-detection-notice__message__link {
@include H6;
width: 100%;
padding: 0;
justify-content: flex-start;
font-weight: bold;
}
}
}