Fix hack font references

This commit is contained in:
Quad 2025-04-19 12:40:16 +02:00
parent 52a0536d48
commit 4874481a82
1 changed files with 4 additions and 4 deletions

View File

@ -13,28 +13,28 @@
* -------------------------- */ * -------------------------- */
@font-face { @font-face {
font-family: 'Hack'; font-family: 'Hack';
src: url('fonts/hack/hack-regular.woff2') format('woff2'), url('fonts/hack/hack-regular.woff') format('woff'); src: url('/fonts/hack/hack-regular.woff2') format('woff2'), url('/fonts/hack/hack-regular.woff') format('woff');
font-weight: 400; font-weight: 400;
font-style: normal; font-style: normal;
} }
@font-face { @font-face {
font-family: 'Hack'; font-family: 'Hack';
src: url('fonts/hack/hack-bold.woff2') format('woff2'), url('fonts/hack/hack-bold.woff') format('woff'); src: url('/fonts/hack/hack-bold.woff2') format('woff2'), url('/fonts/hack/hack-bold.woff') format('woff');
font-weight: 700; font-weight: 700;
font-style: normal; font-style: normal;
} }
@font-face { @font-face {
font-family: 'Hack'; font-family: 'Hack';
src: url('fonts/hack/hack-italic.woff2') format('woff2'), url('fonts/hack/hack-italic.woff') format('woff'); src: url('/fonts/hack/hack-italic.woff2') format('woff2'), url('/fonts/hack/hack-italic.woff') format('woff');
font-weight: 400; font-weight: 400;
font-style: italic; font-style: italic;
} }
@font-face { @font-face {
font-family: 'Hack'; font-family: 'Hack';
src: url('fonts/hack/hack-bolditalic.woff2') format('woff2'), url('fonts/hack/hack-bolditalic.woff') format('woff'); src: url('/fonts/hack/hack-bolditalic.woff2') format('woff2'), url('/fonts/hack/hack-bolditalic.woff') format('woff');
font-weight: 700; font-weight: 700;
font-style: italic; font-style: italic;
} }