From 67fc5c1d725110d442f27ca125a749f38dcd74c9 Mon Sep 17 00:00:00 2001 From: Andrew Croce Date: Fri, 6 Jul 2018 16:04:34 -0400 Subject: [PATCH] global container styles --- scss/sections/_main.scss | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/scss/sections/_main.scss b/scss/sections/_main.scss index 9fb92a24..a4159054 100644 --- a/scss/sections/_main.scss +++ b/scss/sections/_main.scss @@ -1,3 +1,11 @@ +.container { + @include margin(($site-margins-mobile * 2) null); + + @include media($medium-screen) { + @include margin(($site-margins * 2) null); + } +} + section { margin-bottom: 10rem; -} \ No newline at end of file +}