Interface SAV

This commit is contained in:
Jonathan Chevalier
2023-06-21 18:26:43 +02:00
parent b0f9cf2dd8
commit b770fb5fdb
78 changed files with 8449 additions and 79 deletions

View File

@@ -0,0 +1,12 @@
// Contextual backgrounds
// [converter] $parent hack
@mixin bg-variant($parent, $color) {
#{$parent} {
background-color: $color;
}
a#{$parent}:hover,
a#{$parent}:focus {
background-color: darken($color, 10%);
}
}