mirror of https://github.com/ElemeFE/element
13 lines
259 B
SCSS
13 lines
259 B
SCSS
![]() |
@import "common/var";
|
||
|
@import "mixins/mixins";
|
||
|
|
||
|
.hide {
|
||
|
@each $break-point-name, $value in $--breakpoints-spec {
|
||
|
&-#{$break-point-name} {
|
||
|
@include res($break-point-name, $--breakpoints-spec) {
|
||
|
display: none !important;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|