Initial port
[editorial.git] / assets / main / sass / components / _row.scss
1 ///
2 /// Editorial 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.5em);
11
12 @include breakpoint('<=xlarge') {
13 @include html-grid(1.5em, 'xlarge');
14 }
15
16 @include breakpoint('<=large') {
17 @include html-grid(1.5em, 'large');
18 }
19
20 @include breakpoint('<=medium') {
21 @include html-grid(1.5em, 'medium');
22 }
23
24 @include breakpoint('<=small') {
25 @include html-grid(1.5em, 'small');
26 }
27
28 @include breakpoint('<=xsmall') {
29 @include html-grid(1.5em, 'xsmall');
30 }
31 }