From: Jay Sitter Date: Sat, 17 Jun 2023 03:32:59 +0000 (-0400) Subject: Revert "fix: Sass files don't need to refer to full node_modules path" X-Git-Url: http://these/git/?a=commitdiff_plain;h=366acfe10648631e134a0c728b82d077d5705ea1;p=lemmy-ui.git Revert "fix: Sass files don't need to refer to full node_modules path" This reverts commit ab92d7264d547c2c49e5a6a530fd8db85a4a5f3a. --- diff --git a/src/assets/css/themes/darkly-red.scss b/src/assets/css/themes/darkly-red.scss index f6579a3..f6dfb3d 100644 --- a/src/assets/css/themes/darkly-red.scss +++ b/src/assets/css/themes/darkly-red.scss @@ -1,2 +1,2 @@ @import "variables.darkly-red"; -@import "bootstrap-v4/scss/bootstrap"; +@import "../../../../node_modules/bootstrap-v4/scss/bootstrap"; diff --git a/src/assets/css/themes/darkly.scss b/src/assets/css/themes/darkly.scss index 657344f..ef808d5 100644 --- a/src/assets/css/themes/darkly.scss +++ b/src/assets/css/themes/darkly.scss @@ -1,2 +1,2 @@ @import "variables.darkly"; -@import "bootstrap-v4/scss/bootstrap"; +@import "../../../../node_modules/bootstrap-v4/scss/bootstrap"; diff --git a/src/assets/css/themes/litely-red.scss b/src/assets/css/themes/litely-red.scss index 400b6ce..388d70b 100644 --- a/src/assets/css/themes/litely-red.scss +++ b/src/assets/css/themes/litely-red.scss @@ -1,2 +1,2 @@ @import "variables.litely-red"; -@import "bootstrap-v4/scss/bootstrap"; +@import "../../../../node_modules/bootstrap-v4/scss/bootstrap"; diff --git a/src/assets/css/themes/litely.scss b/src/assets/css/themes/litely.scss index 8001586..061bcc4 100644 --- a/src/assets/css/themes/litely.scss +++ b/src/assets/css/themes/litely.scss @@ -1,2 +1,2 @@ @import "variables.litely"; -@import "bootstrap-v4/scss/bootstrap"; +@import "../../../../node_modules/bootstrap-v4/scss/bootstrap"; diff --git a/src/shared/components/app/styles.scss b/src/shared/components/app/styles.scss index 4d764cd..559f619 100644 --- a/src/shared/components/app/styles.scss +++ b/src/shared/components/app/styles.scss @@ -1,6 +1,6 @@ // Custom css -@import "tributejs/dist/tribute.css"; -@import "toastify-js/src/toastify.css"; -@import "tippy.js/dist/tippy.css"; -@import "bootstrap/dist/css/bootstrap-utilities.min.css"; +@import "../../../../node_modules/tributejs/dist/tribute.css"; +@import "../../../../node_modules/toastify-js/src/toastify.css"; +@import "../../../../node_modules/tippy.js/dist/tippy.css"; +@import "../../../../node_modules/bootstrap/dist/css/bootstrap-utilities.min.css"; @import "../../../assets/css/main.css";