mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* Fixing missing theme mixin inclusion for forms * Fix missing style mixins in core * Make process-services' scss mixins' naming conventional
15 lines
281 B
SCSS
15 lines
281 B
SCSS
@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;
|
|
}
|
|
}
|
|
}
|