mirror of
https://github.com/safing/web
synced 2025-09-01 10:39:03 +00:00
30 lines
399 B
SCSS
30 lines
399 B
SCSS
.ui.safing-primary {
|
|
background-color: $primary;
|
|
|
|
&.button {
|
|
color: $white;
|
|
|
|
&:hover {
|
|
background-color: darken($primary, 5%);
|
|
}
|
|
}
|
|
}
|
|
|
|
.ui.button.safing-secondary {
|
|
color: $secondary;
|
|
|
|
&:hover {
|
|
color: $secondary;
|
|
}
|
|
}
|
|
|
|
|
|
.ui.button.safing-full {
|
|
color: $secondary;
|
|
background-color: $white;
|
|
|
|
&:hover {
|
|
background-color: $secondary;
|
|
color: $white;
|
|
}
|
|
}
|