From 7d85c9a7401e065f11eb8f93a4a40149293ee70e Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Sun, 8 Jan 2017 16:37:48 +0200 Subject: [PATCH] source/scss/style.scss: Import local overrides last MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It seems this is actually the preferred way to do it, but something in the Bootstrap v4 Alpha 6 release—perhaps the upgraded version of Normalize.css with that release—caused our styles to be overridden and now I realize that it should have never been working before! --- source/scss/style.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/scss/style.scss b/source/scss/style.scss index ecae1fc..0b3a6dc 100644 --- a/source/scss/style.scss +++ b/source/scss/style.scss @@ -1,6 +1,3 @@ -// optional: import local styles first -@import 'source/scss/main'; - // selectively import components we need from font-awesome // see: node_modules/font-awesome/scss/font-awesome.scss @import 'source/scss/font-awesome'; @@ -8,3 +5,6 @@ // selectively import components we need from bootstrap // see: node_modules/bootstrap/scss/bootstrap.scss @import 'source/scss/bootstrap'; + +// local style overrides +@import 'source/scss/main';