Update tailwind.config.js and .air.toml, remove stylegen/package.json and modify base.css and main.go

This commit is contained in:
2024-01-28 16:17:10 -07:00
parent ac9082194c
commit d9b0bc44fb
15 changed files with 134 additions and 25 deletions

19
stylegen/base.css vendored
View File

@ -1,12 +1,15 @@
@import url('daisyui.css') layer(base);
@tailwind base;
@tailwind components;
@tailwind utilities;
html,
container,
body {
height: 100%;
width: 100%;
overflow-y: auto;
position: fixed;
}
@layer base {
html,
container,
body {
height: 100%;
width: 100%;
overflow-y: auto;
position: fixed;
}
}