Initial hidden11 MVP

This commit is contained in:
alexandrev-tibco
2026-05-02 20:50:36 +02:00
commit fa04b20e30
42 changed files with 8728 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
color-scheme: dark;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
background: #061b12;
color: #f8fafc;
}
@keyframes grow {
from {
transform: scaleX(0);
}
to {
transform: scaleX(1);
}
}
button,
input {
font: inherit;
}