Files
maitsevkimp.ee/resources/scss/core/mixins/_modals.scss
T
s-lnk aabe5fe2b7 v1
2026-04-30 21:58:39 +03:00

23 lines
390 B
SCSS

@mixin modal-variant($background) {
.modal-title {
color: color-yiq($background);
}
.modal-header,
.modal-footer {
border-color: rgba(color-yiq($background), .075);
}
.modal-content {
background-color: $background;
color: color-yiq($background);
.heading {
color: color-yiq($background);
}
}
.close {
&>span:not(.sr-only) {
color: $white;
}
}
}