mirror of
https://github.com/safing/web
synced 2025-09-01 10:39:03 +00:00
28 lines
472 B
SCSS
28 lines
472 B
SCSS
.ui.button.safing-active {
|
|
color: $white;
|
|
background-color: $primary;
|
|
}
|
|
|
|
.ui.button.safing-active:hover {
|
|
background-color: $anchor_hover;
|
|
color: $white;
|
|
}
|
|
|
|
.ui.button.safing-secondary{
|
|
color: $secondary;
|
|
}
|
|
|
|
.ui.button.safing-secondary:hover{
|
|
background-color: $fill_medium;
|
|
color: $white;
|
|
}
|
|
|
|
.ui.button.safing-full {
|
|
color: $fill_lighter;
|
|
background-color: $white;
|
|
}
|
|
|
|
.ui.button.safing-full:hover {
|
|
background-color: $fill_lighter;
|
|
color: $white;
|
|
}
|