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,14 @@
// Alerts
@mixin alert-variant($background, $border, $text-color) {
background-color: $background;
border-color: $border;
color: $text-color;
hr {
border-top-color: darken($border, 5%);
}
.alert-link {
color: darken($text-color, 10%);
}
}