Luke Tainton 906e557d65
🚀 RELEASE: 2020 Revamp
Signed-off-by: Luke Tainton <luke@tainton.uk>
2020-05-09 22:15:53 +01:00

18 lines
318 B
SCSS
Executable File

@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%);
}
&:focus,
&.focus {
outline: 0;
box-shadow: 0 0 0 $badge-focus-width rgba($bg, .5);
}
}
}