feat(*): Add font and body styles

This commit is contained in:
Josh Creek
2023-07-10 18:44:02 +01:00
parent 886ce48256
commit 44dcb584bb
+5 -1
View File
@@ -3,10 +3,14 @@
<head>
<meta charset="utf-8" />
<link rel="icon" href="%sveltekit.assets%/favicon-32x32.png" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Fuzzy+Bubbles:wght@400;700&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width" />
<title>Estimation Poker</title>
%sveltekit.head%
</head>
<body data-sveltekit-preload-data="hover">
<body data-sveltekit-preload-data="hover" style="margin: 0; font-family: Arial, sans-serif;">
<div style="display: contents">%sveltekit.body%</div>
</body>
</html>