mirror of
https://github.com/tuono-labs/tuono
synced 2026-07-29 22:02:46 -07:00
25 lines
226 B
CSS
25 lines
226 B
CSS
|
|
.icon {
|
||
|
|
width: 22px;
|
||
|
|
height: 22px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.dark {
|
||
|
|
@mixin dark {
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
@mixin light {
|
||
|
|
display: block;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
.light {
|
||
|
|
@mixin light {
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
@mixin dark {
|
||
|
|
display: block;
|
||
|
|
}
|
||
|
|
}
|