Skip to content

Commit

Permalink
Use relative path for assets (#307)
Browse files Browse the repository at this point in the history
Co-authored-by: feederbox826 <[email protected]>
  • Loading branch information
feederbox826 and feederbox826 authored May 26, 2024
1 parent 5ac0022 commit 6c2ff5b
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions plugins/qxSceneCard/qxSceneCard.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,29 +3,28 @@
font-style: normal;
font-weight: 100;
font-display: swap;
src: url("/plugin/qxSceneCard/assets/fonts/Inter-Thin.woff2") format("woff2");
src: url("./assets/fonts/Inter-Thin.woff2") format("woff2");
}
@font-face {
font-family: "Inter";
font-style: normal;
font-weight: 300;
font-display: swap;
src: url("/plugin/qxSceneCard/assets/fonts/Inter-Light.woff2") format("woff2");
src: url("./assets/fonts/Inter-Light.woff2") format("woff2");
}
@font-face {
font-family: "Inter";
font-style: normal;
font-weight: 400;
font-display: swap;
src: url("/plugin/qxSceneCard/assets/fonts/Inter-Regular.woff2")
format("woff2");
src: url("./assets/fonts/Inter-Regular.woff2") format("woff2");
}
@font-face {
font-family: "Inter";
font-style: normal;
font-weight: 700;
font-display: swap;
src: url("/plugin/qxSceneCard/assets/fonts/Inter-Bold.woff2") format("woff2");
src: url("./assets/fonts/Inter-Bold.woff2") format("woff2");
}
.scene-card {
font-family: "Inter", sans-serif;
Expand Down

0 comments on commit 6c2ff5b

Please sign in to comment.