mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2026-08-27 22:10:26 +02:00
13 lines
259 B
SCSS
13 lines
259 B
SCSS
@use './common/var' as var;
|
|
@use 'mixins/mixins';
|
|
|
|
.hidden {
|
|
@each $break-point-name, $value in var.$breakpoints-spec {
|
|
&-#{$break-point-name} {
|
|
@include mixins.res($break-point-name, var.$breakpoints-spec) {
|
|
display: none !important;
|
|
}
|
|
}
|
|
}
|
|
}
|