fix(ui): use local asset for page background (#2445)

this avoids a remote call to github's raw download
so the application is less reliant on public internet
access.  further this prevents unknown failures
when the bg.png is removed or changed in the external repo
This commit is contained in:
James Ward
2026-01-23 22:56:05 -05:00
committed by GitHub
parent 27c764f0f1
commit ffae8dfce3
2 changed files with 1 additions and 1 deletions

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

View File

@@ -18,7 +18,7 @@ body {
min-height: 100%;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
--glow-image: url(https://github.com/booklore-app/booklore-docs/blob/master/static/img/cdn/bg.png?raw=true), radial-gradient(50% 50% at center -25px, var(--p-primary-color) 0%, #000000 100%);
--glow-image: url(assets/images/bg.png), radial-gradient(50% 50% at center -25px, var(--p-primary-color) 0%, #000000 100%);
--glow-blend: hard-light, color-dodge;
}