mirror of
https://github.com/danielvici/tool-website.git
synced 2026-01-16 18:31:26 +00:00
14 lines
228 B
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;
|
|
} |