mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
23 lines
369 B
SCSS
23 lines
369 B
SCSS
.icon {
|
|
position: relative;
|
|
top: 1px;
|
|
display: inline-block;
|
|
width: 16px;
|
|
height: 16px;
|
|
|
|
&-color {
|
|
border: 1px solid #aaa;
|
|
|
|
&-white {
|
|
background-color: #fff;
|
|
}
|
|
&-black {
|
|
background-color: #000;
|
|
}
|
|
&-red {
|
|
background-color: $ace-primary-color;
|
|
}
|
|
}
|
|
|
|
}
|