Overhaul of stylegen

This commit is contained in:
2025-03-23 03:23:45 -06:00
parent cff4c4715e
commit 2267706737
7 changed files with 224 additions and 51 deletions

29
lib/stylegen/base.css vendored
View File

@ -1,14 +1,29 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
@import "tailwindcss";
@layer base {
html,
container,
body {
height: 100%;
width: 100%;
overflow-y: auto;
position: fixed;
height: 100% !important;
width: 100% !important;
overflow-y: auto !important;
position: fixed !important;
}
main {
margin-left: auto !important;
margin-right: auto !important;
width: 100% !important;
max-width: 100% !important;
text-align: center !important;
}
.container {
margin-left: auto !important;
margin-right: auto !important;
display: flex !important;
flex-direction: column !important;
align-items: center !important;
justify-content: center !important;
}
}