refactor(main): move dark class from body to html

This commit is contained in:
Kim, Jimin 2023-07-21 01:52:27 +09:00
parent 8bf9f2d31e
commit 453f203637
Signed by: pomp
GPG key ID: CE1DDB8A4A765403

View file

@ -1,5 +1,5 @@
<!DOCTYPE html>
<html lang="en">
<html lang="en" class="dark">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%sveltekit.assets%/favicon.svg" />
@ -25,7 +25,7 @@
%sveltekit.head%
</head>
<body class="dark">
<body>
<noscript>JavaScript is not enabled!</noscript>
<div id="root">%sveltekit.body%</div>
</body>