-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (43 loc) · 1.25 KB
/
index.html
File metadata and controls
46 lines (43 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!doctype html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Project-Time-Tracker</title>
<!-- WICHTIG: Hier laden wir Tailwind CSS global -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Optionale Konfiguration für Tailwind (z.B. Dark Mode) -->
<script>
tailwind.config = {
theme: {
extend: {},
}
}
</script>
<!-- Benutzerdefinierte Styles (z.B. für Scrollbar) -->
<style>
.scroll-list {
max-height: 60vh;
overflow-y: auto;
scrollbar-width: thin;
scrollbar-color: #475569 #1e293b;
}
.scroll-list::-webkit-scrollbar {
width: 8px;
}
.scroll-list::-webkit-scrollbar-thumb {
background-color: #475569;
border-radius: 10px;
}
.scroll-list::-webkit-scrollbar-track {
background: #1e293b;
}
</style>
</head>
<!-- Setze den dunklen Hintergrund auf den Body -->
<body class="bg-slate-900">
<div id="root"></div>
<!-- Vite's Script zum Laden deiner React App -->
<script type="module" src="/src/main.jsx"></script>
</body>
</html>