From efb374ff00ef46a991d94f3bdeb0ff69213275c6 Mon Sep 17 00:00:00 2001 From: Laury GvR Date: Mon, 9 Jul 2018 17:03:07 -0400 Subject: [PATCH] Add centered class without specifying col #, goes full width. --- scss/_grid.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scss/_grid.scss b/scss/_grid.scss index e4adb42..66930ef 100644 --- a/scss/_grid.scss +++ b/scss/_grid.scss @@ -93,6 +93,10 @@ $sizes-list: ( max-width: $i * (100 / 12) * 1%; } } + .#{$prefix}-#{$size}-centered { + justify-self: center; + grid-column: span 12 !important; + } } } -- 2.17.1