Rebuilding with CalibreDB.

This commit is contained in:
2022-10-14 16:22:58 -05:00
parent f417165b62
commit 4e6e00fc54
159 changed files with 23868 additions and 0 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%);
}
}