Initial front end

This commit is contained in:
2024-10-31 16:20:52 +02:00
commit 2f3045eea0
22 changed files with 7385 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
*,
*::before,
*::after {
box-sizing: border-box;
}
html,
body,
#root,
.app {
height: 100%;
width: 100%;
@apply text-sm;
@apply bg-gray-500;
@apply text-gray-900;
}