fix: Add Tailwind CSS import to BaseLayout

- Created globals.css with @import 'tailwindcss'
- BaseLayout now imports globals.css
- Custom industrial theme colors defined
- Desktop-first typography preserved
- Fixes missing CSS/styling issue
This commit is contained in:
Kunthawat
2026-03-11 15:14:53 +07:00
parent 16071f80fe
commit b0e7b2220d
2 changed files with 35 additions and 3 deletions

View File

@@ -41,7 +41,5 @@ const { title, description, image } = Astro.props;
</html>
<style is:global>
html {
font-family: 'Kanit', system-ui, sans-serif;
}
@import "../styles/globals.css";
</style>