Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 

13 linhas
298 B

  1. // stylelint-disable declaration-no-important
  2. // Width and height
  3. @each $prop, $abbrev in (width: w, height: h) {
  4. @each $size, $length in $sizes {
  5. .#{$abbrev}-#{$size} { #{$prop}: $length !important; }
  6. }
  7. }
  8. .mw-100 { max-width: 100% !important; }
  9. .mh-100 { max-height: 100% !important; }