sky/assets/scss/argon-design-system/mixins/modals.scss

23 lines
390 B
SCSS
Raw Normal View History

2021-07-25 09:12:40 +08:00
@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;
}
}
}