Use style.css instead of inline styles (#581)

This commit is contained in:
Leendert de Borst
2025-03-07 15:14:04 +01:00
parent 5042e1b696
commit 165a89e946
2 changed files with 4 additions and 1 deletions

View File

@@ -15,7 +15,7 @@
}
</script>
</head>
<body class="bg-white dark:bg-gray-900" style="font-size: 75%;">
<body class="bg-white dark:bg-gray-900">
<div id="root"></div>
<script type="module" src="./main.tsx"></script>
</body>

View File

@@ -0,0 +1,3 @@
body {
font-size: 75%;
}