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

github.com/curttimson/hugo-theme-massively.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'static/assets/sass/components/_row.scss')
-rw-r--r--static/assets/sass/components/_row.scss35
1 files changed, 35 insertions, 0 deletions
diff --git a/static/assets/sass/components/_row.scss b/static/assets/sass/components/_row.scss
new file mode 100644
index 0000000..eda5ae6
--- /dev/null
+++ b/static/assets/sass/components/_row.scss
@@ -0,0 +1,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');
+ }
+ } \ No newline at end of file