Initial commit: Tool Website with Password Generator, Image Converter and Bookmarks

This commit is contained in:
danielvici123
2025-05-16 00:40:51 +02:00
commit d478acc6e3
19 changed files with 4049 additions and 0 deletions

14
app/globals.css Normal file
View File

@@ -0,0 +1,14 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
html, body {
@apply bg-zinc-900;
height: 100%;
overflow: hidden;
}
main {
height: calc(100vh - 64px); /* 64px ist die Höhe der Navbar */
overflow-y: auto;
}