mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-27 12:56:01 +01:00
32 lines
617 B
SCSS
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;
|
||
|
}
|
||
|
}
|
||
|
}
|