mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
28 lines
518 B
SCSS
28 lines
518 B
SCSS
@import "../themes/themes";
|
|
|
|
@include themifyRoot() {
|
|
.dialog {
|
|
background-color: themed(dialogBgColor);
|
|
color: themed(dialogFgColor);
|
|
|
|
.dialog-header {
|
|
padding: 20px;
|
|
border-bottom: 1px solid themed(dialogBorderColor);
|
|
|
|
h4 {
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
.dialog-content {
|
|
padding: 20px;
|
|
}
|
|
|
|
.dialog-footer {
|
|
padding: 20px;
|
|
border-top: 1px solid themed(dialogFooterBorderColor);
|
|
background-color: themed(dialogFooterBackgroundColor);
|
|
}
|
|
}
|
|
}
|