diff options
| author | Fuwn <[email protected]> | 2026-01-22 22:09:45 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-01-22 22:09:45 -0800 |
| commit | 3dc247717122628793ee88f0cd855c3d8c5afbd7 (patch) | |
| tree | 8dd332ca02d417975a6098ad0e1adb6bdd0c74a8 /static | |
| parent | fix(deps): Pin SvelteKit and adapter versions for sveltekit-graphql compatibi... (diff) | |
| download | due.moe-3dc247717122628793ee88f0cd855c3d8c5afbd7.tar.xz due.moe-3dc247717122628793ee88f0cd855c3d8c5afbd7.zip | |
format: Apply Prettier formatting
Diffstat (limited to 'static')
| -rw-r--r-- | static/styles/LaTeX.css | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/static/styles/LaTeX.css b/static/styles/LaTeX.css index 7fff3c5c..2860e538 100644 --- a/static/styles/LaTeX.css +++ b/static/styles/LaTeX.css @@ -10,8 +10,10 @@ font-style: normal; font-weight: normal; font-display: swap; - src: url('./fonts/LM-regular.woff2') format('woff2'), - url('./fonts/LM-regular.woff') format('woff'), url('./fonts/LM-regular.ttf') format('truetype'); + src: + url('./fonts/LM-regular.woff2') format('woff2'), + url('./fonts/LM-regular.woff') format('woff'), + url('./fonts/LM-regular.ttf') format('truetype'); } @font-face { @@ -19,7 +21,9 @@ font-style: italic; font-weight: normal; font-display: swap; - src: url('./fonts/LM-italic.woff2') format('woff2'), url('./fonts/LM-italic.woff') format('woff'), + src: + url('./fonts/LM-italic.woff2') format('woff2'), + url('./fonts/LM-italic.woff') format('woff'), url('./fonts/LM-italic.ttf') format('truetype'); } @@ -28,7 +32,9 @@ font-style: normal; font-weight: bold; font-display: swap; - src: url('./fonts/LM-bold.woff2') format('woff2'), url('./fonts/LM-bold.woff') format('woff'), + src: + url('./fonts/LM-bold.woff2') format('woff2'), + url('./fonts/LM-bold.woff') format('woff'), url('./fonts/LM-bold.ttf') format('truetype'); } @@ -37,7 +43,8 @@ font-style: italic; font-weight: bold; font-display: swap; - src: url('./fonts/LM-bold-italic.woff2') format('woff2'), + src: + url('./fonts/LM-bold-italic.woff2') format('woff2'), url('./fonts/LM-bold-italic.woff') format('woff'), url('./fonts/LM-bold-italic.ttf') format('truetype'); } |