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.
25 lines
394 B
25 lines
394 B
7 years ago
|
.info-box {
|
||
|
border-radius: 4px;
|
||
|
background-color: $alabaster;
|
||
|
position: relative;
|
||
|
padding: 16px;
|
||
|
display: flex;
|
||
|
flex-flow: column;
|
||
|
color: $mid-gray;
|
||
|
|
||
|
&__close::after {
|
||
|
content: '\00D7';
|
||
|
font-size: 29px;
|
||
|
font-weight: 200;
|
||
|
color: $dusty-gray;
|
||
|
position: absolute;
|
||
|
right: 12px;
|
||
|
top: 0;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
|
||
|
&__description {
|
||
4 years ago
|
@include H7;
|
||
7 years ago
|
}
|
||
|
}
|