takahiros 6 лет назад
Родитель
Сommit
7f86724b97

+ 0 - 20
src/client/styles/scss/_override-bootstrap-variables.scss

@@ -67,23 +67,3 @@ $theme-colors: (
   'warning': #8a6d3b,
   'warning': #8a6d3b,
   'danger': #ff0a54
   'danger': #ff0a54
 );
 );
-
-//** alert with custom color
-.alert {
-  a:not(.btn) {
-    color: white;
-  }
-}
-@each $theme-color, $color in $theme-colors {
-  .alert.alert-#{$theme-color} {
-    background: $color;
-    border: initial;
-    border-radius: initial;
-    a:not(.btn) {
-      &:hover,
-      &:focus {
-        color: lighten($color, 30%);
-      }
-    }
-  }
-}

+ 20 - 0
src/client/styles/scss/_override-bootstrap.scss

@@ -0,0 +1,20 @@
+@import 'override-bootstrap-variables';
+//** alert with custom color
+.alert {
+  a:not(.btn) {
+    color: white;
+  }
+}
+@each $theme-color, $color in $theme-colors {
+  .alert.alert-#{$theme-color} {
+    background: $color;
+    border: initial;
+    border-radius: initial;
+    a:not(.btn) {
+      &:hover,
+      &:focus {
+        color: lighten($color, 30%);
+      }
+    }
+  }
+}

+ 1 - 0
src/client/styles/scss/style-app.scss

@@ -4,6 +4,7 @@
 @import 'mixins';
 @import 'mixins';
 
 
 @import 'override-bootstrap-variables';
 @import 'override-bootstrap-variables';
+@import 'override-bootstrap';
 
 
 // vendor
 // vendor
 @import 'vendor';
 @import 'vendor';