mirror of
https://codeberg.org/PostERG/xamxam.git
synced 2026-05-06 19:19:19 +02:00
fix(css): add format hint + descriptors to @font-face for police1/Combinedd.otf
This commit is contained in:
3
TODO.md
3
TODO.md
@@ -11,6 +11,9 @@ Pending tasks have been split into topic files under [`todo/`](todo/README.md):
|
||||
|
||||
## Recently completed (this session)
|
||||
|
||||
- [x] `common.css` — `@font-face` for `police1` missing `format("opentype")` hint + `font-style`/`font-weight` descriptors; browser discarded table; added all three
|
||||
|
||||
|
||||
- [x] `scripts/deploy-server.sh` — add step 4: `systemctl reload nginx` runs automatically; remove manual reload instruction from justfile
|
||||
|
||||
- [x] `nginx/posterg.conf` — add `script-src 'self' 'unsafe-inline'` to admin CSP; `default-src 'self'` was blocking OverType init script and live-reload poller
|
||||
|
||||
@@ -2,7 +2,9 @@
|
||||
|
||||
@font-face {
|
||||
font-family: "police1";
|
||||
src: url("../fonts/Combinedd.otf");
|
||||
src: url("../fonts/Combinedd.otf") format("opentype");
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-display: swap;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user