_widths.scss 290 B

12345678910111213141516171819
  1. .max-width { width: 100%; }
  2. .width-auto { width: auto; }
  3. // widths
  4. @for $i from 1 through 30 {
  5. .width-#{$i} {
  6. width: ($spacer * $i) - $gf-form-margin;
  7. }
  8. }
  9. @for $i from 1 through 30 {
  10. .max-width-#{$i} {
  11. max-width: ($spacer * $i) - $gf-form-margin;
  12. flex-grow: 1;
  13. }
  14. }