Files
tool-website/app/globals.css

14 lines
228 B
CSS

@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;
}