Skip to content

Commit

Permalink
OK so that *does* work
Browse files Browse the repository at this point in the history
  • Loading branch information
TheReverend403 committed Feb 26, 2024
1 parent abc88bf commit cc954bd
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
6 changes: 3 additions & 3 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions pste/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,7 @@ def register_assets(app):
assets.directory = app.static_folder
assets.auto_build = app.debug or app.testing
assets.append_path(paths.ASSETS)
assets.config["LIBSASS_INCLUDES"] = [str(paths.NODE_MODULES)]

for name, bundle in bundles.items():
assets.register(name, bundle)
Expand Down
6 changes: 3 additions & 3 deletions pste/assets/scss/app.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
* along with pste. If not, see <https://www.gnu.org/licenses/>.
*/

@import "/opt/node/node_modules/bootstrap/scss/functions";
@import "/opt/node/node_modules/bootstrap/scss/variables";
@import "bootstrap/scss/functions";
@import "bootstrap/scss/variables";

$enable-rounded: false;

Expand All @@ -27,7 +27,7 @@ $theme-colors: (
$input-focus-border-color: theme-color("primary");
$input-focus-box-shadow: 0;

@import "/opt/node/node_modules/bootstrap/scss/bootstrap";
@import "bootstrap/scss/bootstrap";

.navbar {
margin-bottom: 20px;
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pste"
version = "0.7.10"
version = "0.7.11"
description = "Just a simple file hosting application inspired by the likes of pomf.se and teknik.io."
authors = ["Lee Watson <me@lwatson.dev>"]
license = "GPL-3.0+"
Expand Down

0 comments on commit cc954bd

Please sign in to comment.