mirror of
https://github.com/antebudimir/feishin.git
synced 2025-12-31 10:03:33 +00:00
24 lines
360 B
CSS
24 lines
360 B
CSS
.button {
|
|
svg {
|
|
display: flex;
|
|
fill: var(--theme-colors-foreground);
|
|
}
|
|
|
|
&:hover {
|
|
svg {
|
|
fill: var(--theme-colors-foreground);
|
|
}
|
|
}
|
|
}
|
|
|
|
.button.active {
|
|
svg {
|
|
fill: var(--primary-color);
|
|
}
|
|
|
|
&:hover {
|
|
svg {
|
|
fill: var(--primary-color) !important;
|
|
}
|
|
}
|
|
}
|