Initial commit of dashboard

This commit is contained in:
Oracle 2026-06-14 18:13:56 +02:00
parent 59d24aa206
commit adc39db441
Signed by: Oracle
SSH key fingerprint: SHA256:x4/RtnjUyuHkdvmwNDsWSfcfF1V5PNr3OpriZqOvCX8
21 changed files with 797 additions and 20 deletions

View file

@ -6,18 +6,29 @@
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="icon" href="/favicon.ico" />
<meta name="generator" content={Astro.generator} />
<title>Astro Basics</title>
<title>Time Tracking Dashboard</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
margin: 0;
width: 100%;
height: 100%;
background: #0d0d1a;
color: #e0e0e0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
#app {
max-width: 1400px;
margin: 0 auto;
padding: 24px;
}
</style>
</head>
<body>
<slot />
</body>
</html>
<style>
html,
body {
margin: 0;
width: 100%;
height: 100%;
}
</style>