32 lines
412 B
SCSS
32 lines
412 B
SCSS
|
|
@mixin icon($size){
|
||
|
|
width: $size;
|
||
|
|
height: $size;
|
||
|
|
|
||
|
|
svg {
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
@mixin chart-edit($size){
|
||
|
|
width: $size;
|
||
|
|
height: $size;
|
||
|
|
|
||
|
|
svg {
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
|
||
|
|
circle{
|
||
|
|
fill: #cfcfcf;
|
||
|
|
}
|
||
|
|
|
||
|
|
.filled{
|
||
|
|
fill: lightgreen;
|
||
|
|
}
|
||
|
|
|
||
|
|
.verified{
|
||
|
|
fill: green;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|