28 lines
343 B
Plaintext
28 lines
343 B
Plaintext
|
svg {
|
||
|
user-select: none;
|
||
|
|
||
|
&:not(.outlined) {
|
||
|
circle {
|
||
|
fill: currentColor;
|
||
|
stroke: currentColor;
|
||
|
}
|
||
|
|
||
|
text {
|
||
|
fill: white;
|
||
|
stroke: white;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
&.outlined {
|
||
|
circle {
|
||
|
ill: white;
|
||
|
stroke: currentColor;
|
||
|
}
|
||
|
|
||
|
text {
|
||
|
fill: currentColor;
|
||
|
stroke: currentColor;
|
||
|
}
|
||
|
}
|
||
|
}
|