update homepage

This commit is contained in:
2026-01-18 22:17:50 +01:00
parent cc8b8b6d8b
commit d93e2f8928
2 changed files with 2 additions and 12 deletions

View File

@@ -5,26 +5,16 @@ import DjEmail from "@/DjEmail.tsx";
import { addCSS, css } from "@/util.ts"; import { addCSS, css } from "@/util.ts";
const styles = css` const styles = css`
body {
height: 100svh;
}
.dj-home-root { .dj-home-root {
margin: auto; margin: auto;
width: 500px; width: 500px;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
height: 100%;
.resource { .resource {
margin-bottom: 10px; margin-bottom: 10px;
} }
.spacer {
flex-grow: 1;
height: 100%;
}
.dj-title { .dj-title {
font-size: 48px; font-size: 48px;
margin: 20px auto; margin: 20px auto;
@@ -162,7 +152,7 @@ export default defineComponent({
</ul> </ul>
</main> </main>
</div> </div>
<div class="spacer" /> <hr />
<footer> <footer>
<div class="bottom"> <div class="bottom">
<div> <div>

View File

@@ -11,6 +11,6 @@
<!-- SSR HEAD OUTLET --> <!-- SSR HEAD OUTLET -->
</head> </head>
<body> <body>
<div id="app-root" style="height: 100vh;"><!-- SSR OUTLET --></div> <div id="app-root"><!-- SSR OUTLET --></div>
</body> </body>
</html> </html>