added some shadowing to the wip

This commit is contained in:
Yannik
2023-05-20 17:47:59 +02:00
parent bc881fd129
commit 8bf6e2814b
3 changed files with 22 additions and 6 deletions

View File

@@ -1,5 +1,6 @@
---
let { title } = Astro.props;
import "../styles/global.scss"
---
<html lang="en">
@@ -10,5 +11,9 @@ let { title } = Astro.props;
<meta name="generator" content={Astro.generator} />
<title>{title}</title>
</head>
<body><slot /></body>
<body>
<div class="page">
<slot />
</div>
</body>
</html>