mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04: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
17 lines
320 B
SCSS
17 lines
320 B
SCSS
@import '~@angular/material/theming';
|
|
|
|
@mixin adf-default-class-theme($theme) {
|
|
|
|
.adf-hide-small {
|
|
@media screen and ($mat-small) {
|
|
display: none !important;
|
|
}
|
|
}
|
|
|
|
.adf-hide-xsmall {
|
|
@media screen and ($mat-xsmall) {
|
|
display: none !important;
|
|
}
|
|
}
|
|
}
|