16 lines
317 B
SCSS
16 lines
317 B
SCSS
.v-card {
|
|
height: 100%;
|
|
}
|
|
|
|
@each $theme in dark, light {
|
|
// @include theme($theme);
|
|
.v-application.#{$theme}-mode {
|
|
.v-card {
|
|
color: map-deep-get($config, #{$theme}, "card-default-color");
|
|
.v-card__subtitle {
|
|
color: map-deep-get($config, #{$theme}, "card-subtitle");
|
|
}
|
|
}
|
|
}
|
|
}
|