From aefcdfc23735db651f620233f0f526239db0ff81 Mon Sep 17 00:00:00 2001 From: Aidan Nelson Date: Sun, 18 Mar 2018 06:33:09 -0400 Subject: [PATCH] fix: broken build Removed a call to @extend within a @media query which seems to throw an error as mentioned in issue #10. --- static/css/theme.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/static/css/theme.scss b/static/css/theme.scss index 709c46a..a6cff8d 100644 --- a/static/css/theme.scss +++ b/static/css/theme.scss @@ -47,7 +47,8 @@ a { padding-left: 0px; nav { @media (min-width: $screen-md-min) { - @extend .no-padding-left-and-right; + padding-left: 0px; + padding-right: 0px; position: fixed; height: 100%; overflow-y: auto;