mirror of
https://github.com/DarkflameUniverse/NexusDashboard.git
synced 2024-11-10 03:58:20 +00:00
12 lines
208 B
SCSS
12 lines
208 B
SCSS
@mixin badge-variant($bg) {
|
|
color: color-yiq($bg);
|
|
background-color: $bg;
|
|
|
|
@at-root a#{&} {
|
|
@include hover-focus {
|
|
color: color-yiq($bg);
|
|
background-color: darken($bg, 10%);
|
|
}
|
|
}
|
|
}
|