fix: Try to fix custom css

This commit is contained in:
daudix-UFO
2023-10-13 02:34:00 +00:00
parent 0a32cbb094
commit fc04aef7f9
3 changed files with 6 additions and 2 deletions

View File

@ -49,7 +49,11 @@ git init
3. Add Duckquill as Git submodule for easy updating: 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: 4. Edit `config.toml` and enable Duckquill theme:

View File

@ -16,6 +16,6 @@
@use "main"; @use "main";
@use "comments"; @use "comments";
@use "scanlines"; @use "scanlines";
@use "custom"; @import "custom";
@import "syntax-theme-dark.css" (prefers-color-scheme: dark); @import "syntax-theme-dark.css" (prefers-color-scheme: dark);
@import "syntax-theme-light.css" (prefers-color-scheme: light); @import "syntax-theme-light.css" (prefers-color-scheme: light);