From fc04aef7f951925ee293a3d87e6c6a54c497a553 Mon Sep 17 00:00:00 2001 From: daudix-UFO Date: Fri, 13 Oct 2023 02:34:00 +0000 Subject: [PATCH] fix: Try to fix custom css --- content/_index.md | 6 +++++- sass/{_custom.scss => custom.scss} | 0 sass/style.scss | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) rename sass/{_custom.scss => custom.scss} (100%) diff --git a/content/_index.md b/content/_index.md index 19295ba..10e6678 100644 --- a/content/_index.md +++ b/content/_index.md @@ -49,7 +49,11 @@ git init 3. Add Duckquill as Git submodule for easy updating: ``` -git submodule add https://codeberg.org/daudix-UFO/duckquill.git themes +git submodule init +``` + +``` +git submodule add https://git.exozy.me/daudix/duckquill.git themes/duckquill ``` 4. Edit `config.toml` and enable Duckquill theme: diff --git a/sass/_custom.scss b/sass/custom.scss similarity index 100% rename from sass/_custom.scss rename to sass/custom.scss diff --git a/sass/style.scss b/sass/style.scss index b70049f..88025f7 100644 --- a/sass/style.scss +++ b/sass/style.scss @@ -16,6 +16,6 @@ @use "main"; @use "comments"; @use "scanlines"; -@use "custom"; +@import "custom"; @import "syntax-theme-dark.css" (prefers-color-scheme: dark); @import "syntax-theme-light.css" (prefers-color-scheme: light);