mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-15 01:41:20 +08:00
13 lines
261 B
SCSS
13 lines
261 B
SCSS
@import 'common/var';
|
|
@import 'mixins/mixins';
|
|
|
|
.hidden {
|
|
@each $break-point-name, $value in $--breakpoints-spec {
|
|
&-#{$break-point-name} {
|
|
@include res($break-point-name, $--breakpoints-spec) {
|
|
display: none !important;
|
|
}
|
|
}
|
|
}
|
|
}
|