eda5ae63fce91916585095aa065393060ecd2794
[editorial.git] / assets / main / sass / components / _row.scss
1 ///
2 /// Massively 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
7 /* Row */
8
9 .row {
10 @include html-grid(1.5rem);
11
12 @include breakpoint('<=xlarge') {
13 @include html-grid(1.5rem, 'xlarge');
14 }
15
16 @include breakpoint('<=large') {
17 @include html-grid(1.5rem, 'large');
18 }
19
20 @include breakpoint('<=medium') {
21 @include html-grid(1.5rem, 'medium');
22 }
23
24 @include breakpoint('<=small') {
25 @include html-grid(1.5rem, 'small');
26 }
27
28 @include breakpoint('<=xsmall') {
29 @include html-grid(1.5rem, 'xsmall');
30 }
31
32 @include breakpoint('<=xxsmall') {
33 @include html-grid(1.5rem, 'xxsmall');
34 }
35 }