_widths.scss 415 B

12345678910111213141516171819202122232425
  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 !important;
  7. }
  8. }
  9. @for $i from 1 through 30 {
  10. .max-width-#{$i} {
  11. max-width: ($spacer * $i) - $gf-form-margin !important;
  12. flex-grow: 1;
  13. }
  14. }
  15. @for $i from 1 through 30 {
  16. .offset-width-#{$i} {
  17. margin-left: ($spacer * $i) !important;
  18. }
  19. }