Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_row.scss « components « sass « assets « static - github.com/curttimson/hugo-theme-massively.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: eda5ae63fce91916585095aa065393060ecd2794 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
///
/// Massively by HTML5 UP
/// html5up.net | @ajlkn
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
///

/* Row */

	.row {
		@include html-grid(1.5rem);

		@include breakpoint('<=xlarge') {
			@include html-grid(1.5rem, 'xlarge');
		}

		@include breakpoint('<=large') {
			@include html-grid(1.5rem, 'large');
		}

		@include breakpoint('<=medium') {
			@include html-grid(1.5rem, 'medium');
		}

		@include breakpoint('<=small') {
			@include html-grid(1.5rem, 'small');
		}

		@include breakpoint('<=xsmall') {
			@include html-grid(1.5rem, 'xsmall');
		}

		@include breakpoint('<=xxsmall') {
			@include html-grid(1.5rem, 'xxsmall');
		}
	}