2020-03-30 18:16:22 +01:00

24 lines
584 B
SCSS

@import '~@angular/material/theming';
@mixin adf-card-view-theme($theme) {
$primary: map-get($theme, primary);
$foreground: map-get($theme, foreground);
.adf-property-list {
.adf-property {
margin-bottom: 20px;
.adf-property-label {
font-size: 12px;
color: mat-color($foreground, text, 0.54);
word-wrap: break-word;
}
.adf-property-value {
font-size: 14px;
color: mat-color($foreground, text, 0.87);
}
}
}
}