mirror of
https://github.com/tenrok/bootstrap.git
synced 2026-05-21 13:24:08 +03:00
12 lines
212 B
SCSS
12 lines
212 B
SCSS
// Contextual backgrounds
|
|
|
|
// [converter] $parent hack
|
|
@mixin bg-variant($parent, $color) {
|
|
#{$parent} {
|
|
background-color: $color;
|
|
}
|
|
a#{$parent}:hover {
|
|
background-color: darken($color, 10%);
|
|
}
|
|
}
|