mirror of
https://github.com/CzBiX/qb-web.git
synced 2026-04-13 18:01:17 +08:00
18 lines
328 B
SCSS
18 lines
328 B
SCSS
@import '~vuetify/src/styles/styles.sass';
|
|
|
|
@mixin dialog-title {
|
|
@include theme(v-card) using($material) {
|
|
.v-card__title {
|
|
background-color: map-get($material, 'app-bar');
|
|
}
|
|
}
|
|
}
|
|
|
|
@mixin dark-mode-value($light, $dark) {
|
|
&.theme--light {
|
|
@content($light);
|
|
}
|
|
&.theme--dark {
|
|
@content($dark);
|
|
}
|
|
} |