6f084171dd
The initial new codebase from a template
13 lines
335 B
SCSS
13 lines
335 B
SCSS
@each $variant, $color in (primary: $brand-primary, secondary: $gray-lighter, success: $brand-success, info: $brand-info, warning: $brand-warning, danger: $brand-danger) {
|
|
.modal-#{$variant} {
|
|
|
|
.modal-content {
|
|
border-color: $color;
|
|
}
|
|
|
|
.modal-header {
|
|
color: #fff;
|
|
background-color: $color;
|
|
}
|
|
}
|
|
}
|