TwoToc code
[YouAndWeb_TwoToc] / client / components / modal / modal.scss
diff --git a/client/components/modal/modal.scss b/client/components/modal/modal.scss
new file mode 100755 (executable)
index 0000000..3b0b9d9
--- /dev/null
@@ -0,0 +1,25 @@
+.modal-primary,
+.modal-info,
+.modal-success,
+.modal-warning,
+.modal-danger {
+  .modal-header {
+    color: #fff;
+    border-radius: 5px 5px 0 0;
+  }
+}
+.modal-primary .modal-header {
+  background: $brand-primary;
+}
+.modal-info .modal-header {
+  background: $brand-info;
+}
+.modal-success .modal-header {
+  background: $brand-success;
+}
+.modal-warning .modal-header {
+  background: $brand-warning;
+}
+.modal-danger .modal-header {
+  background: $brand-danger;
+}