admin/React_Full_Project/scss/bootstrap/mixins/_badge.scss
Łukasz Holeczek 8b49e36656 - update: Bootstrap version to v4.0.0-beta.2
- refactor: Remove old SCSS variables
- refactor: Breadcrumb Menu styles
- fix: External links issue
- fix: Mobile sidebar-nav height issue
2017-10-22 19:18:46 +02:00

13 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%);
}
}
}