_row.scss 639 B

12345678910111213141516171819202122232425262728293031
  1. ///
  2. /// Paradigm Shift by HTML5 UP
  3. /// html5up.net | @ajlkn
  4. /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
  5. ///
  6. /* Row */
  7. .row {
  8. @include html-grid(2rem);
  9. @include breakpoint('<=xlarge') {
  10. @include html-grid(2rem, 'xlarge');
  11. }
  12. @include breakpoint('<=large') {
  13. @include html-grid(1.5rem, 'large');
  14. }
  15. @include breakpoint('<=medium') {
  16. @include html-grid(1.5rem, 'medium');
  17. }
  18. @include breakpoint('<=small') {
  19. @include html-grid(1.25rem, 'small');
  20. }
  21. @include breakpoint('<=xsmall') {
  22. @include html-grid(1.25rem, 'xsmall');
  23. }
  24. }