A Metamask fork with Infura removed and default networks editable
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ciphermask/ui/components/app/info-box/index.scss

25 lines
453 B

.info-box {
border-radius: 4px;
background-color: var(--color-background-alternative);
position: relative;
padding: 16px;
display: flex;
flex-flow: column;
color: var(--color-text-alternative);
&__close::after {
content: '\00D7';
font-size: 29px;
font-weight: 200;
color: var(--color-icon-default);
position: absolute;
right: 12px;
top: 0;
cursor: pointer;
}
&__description {
@include H7;
}
}