mirror of
https://github.com/MirrorNetworking/Mirror.git
synced 2024-11-18 11:00:32 +00:00
13 lines
230 B
SCSS
13 lines
230 B
SCSS
@mixin badge-variant($bg) {
|
|
color: color-yiq($bg);
|
|
background-color: $bg;
|
|
|
|
&[href] {
|
|
@include hover-focus {
|
|
color: color-yiq($bg);
|
|
text-decoration: none;
|
|
background-color: darken($bg, 10%);
|
|
}
|
|
}
|
|
}
|