From 94bdedb362e34d06dc5fad8352ebbcd8f642cd57 Mon Sep 17 00:00:00 2001 From: Alex P Date: Thu, 21 Jun 2018 17:37:22 -0700 Subject: [PATCH] Fix row width calculation Was appearing too small and off center --- ui/src/style/theme/_grid.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/style/theme/_grid.scss b/ui/src/style/theme/_grid.scss index 94de9c720a..d5142f17ec 100644 --- a/ui/src/style/theme/_grid.scss +++ b/ui/src/style/theme/_grid.scss @@ -26,7 +26,7 @@ $grid--col-12: 100%; .row { display: inline-block; - width: 100%; + width: calc(100% + #{$grid--gutter * 2}); margin-left: -$grid--gutter; margin-right: -$grid--gutter;