|
@@ -1,5 +1,5 @@
|
|
|
@use '../bootstrap/init' as *;
|
|
@use '../bootstrap/init' as *;
|
|
|
-@use '../mixins';
|
|
|
|
|
|
|
+@use '../atoms/mixins/buttons' as mixins-buttons;
|
|
|
|
|
|
|
|
@each $color, $value in $theme-colors {
|
|
@each $color, $value in $theme-colors {
|
|
|
@include bg-variant('.bg-#{$color}', $value);
|
|
@include bg-variant('.bg-#{$color}', $value);
|
|
@@ -18,7 +18,7 @@
|
|
|
@each $color, $value in $theme-colors {
|
|
@each $color, $value in $theme-colors {
|
|
|
.btn-#{$color} {
|
|
.btn-#{$color} {
|
|
|
@include button-variant($value, $value);
|
|
@include button-variant($value, $value);
|
|
|
- @include mixins.button-svg-icon-variant($value, $value);
|
|
|
|
|
|
|
+ @include mixins-buttons.button-svg-icon-variant($value, $value);
|
|
|
box-shadow: none !important;
|
|
box-shadow: none !important;
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
@@ -26,7 +26,7 @@
|
|
|
@each $color, $value in $theme-colors {
|
|
@each $color, $value in $theme-colors {
|
|
|
.btn-outline-#{$color} {
|
|
.btn-outline-#{$color} {
|
|
|
@include button-outline-variant($value, $color-hover: $value, $active-background: rgba($value, 0.1), $active-border: $value);
|
|
@include button-outline-variant($value, $color-hover: $value, $active-background: rgba($value, 0.1), $active-border: $value);
|
|
|
- @include mixins.button-outline-svg-icon-variant($value, $color-hover: $value);
|
|
|
|
|
|
|
+ @include mixins-buttons.button-outline-svg-icon-variant($value, $color-hover: $value);
|
|
|
|
|
|
|
|
&:not(:disabled):not(.disabled):active,
|
|
&:not(:disabled):not(.disabled):active,
|
|
|
&:not(:disabled):not(.disabled).active {
|
|
&:not(:disabled):not(.disabled).active {
|