mirror of
https://github.com/TeamPiped/hugo-whisper-theme.git
synced 2024-08-14 23:57:00 +00:00
12 lines
230 B
SCSS
Executable file
12 lines
230 B
SCSS
Executable file
@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%);
|
|
}
|
|
}
|
|
}
|