display.scss 261 B

123456789101112
  1. @import "common/var";
  2. @import "mixins/mixins";
  3. .hidden {
  4. @each $break-point-name, $value in $--breakpoints-spec {
  5. &-#{$break-point-name} {
  6. @include res($break-point-name, $--breakpoints-spec) {
  7. display: none !important;
  8. }
  9. }
  10. }
  11. }