summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/application.scss
diff options
context:
space:
mode:
authorazul <azul@riseup.net>2017-07-26 09:28:28 +0000
committerazul <azul@riseup.net>2017-07-26 09:28:28 +0000
commit38ce3a14652aca9b3b8d8ad42f9968cfbcc44478 (patch)
treed5632fcf5c65331f48b2d0ccc1edaff03c6adf3f /app/assets/stylesheets/application.scss
parente78c74af0f04e05b26dd6695ef7a7571185744ea (diff)
parentd939562360377dad4dfd8ab1520b15f85fc0a730 (diff)
Merge branch 'fix/sass-load-path' into 'master'
Fix/sass load path Closes #8794 See merge request !40
Diffstat (limited to 'app/assets/stylesheets/application.scss')
-rw-r--r--app/assets/stylesheets/application.scss12
1 files changed, 8 insertions, 4 deletions
diff --git a/app/assets/stylesheets/application.scss b/app/assets/stylesheets/application.scss
index f42044b..1fed154 100644
--- a/app/assets/stylesheets/application.scss
+++ b/app/assets/stylesheets/application.scss
@@ -1,7 +1,9 @@
//
-// import custom scss, content to be set in deployment.
+// This will in turn import config/customization/stylesheets/head
+// It is a workaround for sass-rails defaulting to relative imports.
+// https://0xacab.org/leap/webapp/issues/8794
//
-@import "head";
+@import "custom/head-import";
// First import journal variables
// @import "bootswatch/cerulean/variables";
@@ -22,6 +24,8 @@
// @import "bootswatch/cerulean/bootswatch";
//
-// import custom scss, content to be set in deployment.
+// This will in turn import config/customization/stylesheets/tail
+// It is a workaround for sass-rails defaulting to relative imports.
+// https://0xacab.org/leap/webapp/issues/8794
//
-@import "tail";
+@import "custom/tail-import";