diff options
| author | Fuwn <[email protected]> | 2024-01-23 23:04:52 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-01-23 23:04:52 -0800 |
| commit | e38a11c15d43327f6e4b296989b072bc29c044fc (patch) | |
| tree | f9539e20c82b3715343d73d1e18eefcfb5e7dc70 /src | |
| parent | refactor(styles): move out to src (diff) | |
| download | due.moe-e38a11c15d43327f6e4b296989b072bc29c044fc.tar.xz due.moe-e38a11c15d43327f6e4b296989b072bc29c044fc.zip | |
revert: "refactor(html): preload stylesheets"
This reverts commit e8db79db8cdd296e7a3cb51881d6f7e4e7b3a71a.
Diffstat (limited to 'src')
| -rw-r--r-- | src/app.html | 27 |
1 files changed, 4 insertions, 23 deletions
diff --git a/src/app.html b/src/app.html index bb9c69ac..fa352543 100644 --- a/src/app.html +++ b/src/app.html @@ -3,11 +3,7 @@ <head> <!-- HTML --> <meta charset="utf-8" /> - <meta - name="viewport" - property="viewport" - content="width=device-width, initial-scale=1, shrink-to-fit=no" - /> + <meta name="viewport" property="viewport" content="width=device-width" /> <meta name="theme-color" property="theme-color" content="#060506" /> <meta name="description" @@ -49,24 +45,9 @@ <link rel="manifest" href="%sveltekit.assets%/manifest.json" /> <!-- Stylesheets --> - <link - rel="preload" - as="style" - onload="this.onload=null;this.rel='stylesheet';" - href="https://latex.now.sh/style.css" - /> - <link - rel="preload" - as="style" - onload="this.onload=null;this.rel='stylesheet';" - href="https://skybox.sh/css/palettes/base16-dark.css" - /> - <link - rel="preload" - as="style" - onload="this.onload=null;this.rel='stylesheet';" - href="https://skybox.sh/css/risotto.css" - /> + <link rel="stylesheet" type="text/css" href="https://latex.now.sh/style.css" /> + <link rel="stylesheet" type="text/css" href="https://skybox.sh/css/palettes/base16-dark.css" /> + <link rel="stylesheet" type="text/css" href="https://skybox.sh/css/risotto.css" /> <!-- <link rel="stylesheet" type="text/css" href="https://skybox.sh/css/custom.css"> --> <!-- Icons --> |