Initial coomit for AAI-UI(sparky-fe)
[aai/sparky-fe.git] / resources / scss / bootstrap / mixins / _alerts.scss
diff --git a/resources/scss/bootstrap/mixins/_alerts.scss b/resources/scss/bootstrap/mixins/_alerts.scss
new file mode 100644 (file)
index 0000000..b092e85
--- /dev/null
@@ -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%);
+  }
+}