matrix-dimension/web/style/components/dialog.scss
2021-09-01 01:02:53 +02:00

19 lines
414 B
SCSS

@import "../themes/themes";
@include themifyRoot() {
.modal-content {
background-color: themed(dialogBgColor);
color: themed(dialogFgColor);
.modal-header {
padding: 20px;
border-bottom: 1px solid themed(dialogBorderColor);
}
.dialog-footer {
border-top: 1px solid themed(dialogFooterBorderColor);
background-color: themed(dialogFooterBackgroundColor);
}
}
}