mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-19 17:14:57 +00:00
* type fixes * import fixes * fix typos * fix warning for private props that init in ctor only * typing fixes * typing fixes * style cleanup * fix test template
24 lines
583 B
SCSS
24 lines
583 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.4);
|
|
word-wrap: break-word;
|
|
}
|
|
|
|
.adf-property-value {
|
|
font-size: 14px;
|
|
color: mat-color($foreground, text, 0.87);
|
|
}
|
|
}
|
|
}
|
|
}
|