feat: initialize Nuxt.js frontend application with Docker setup, global styling, and authentication pages.
This commit is contained in:
parent
cf37d7371c
commit
dfcabe306c
7 changed files with 238 additions and 12 deletions
|
|
@ -89,13 +89,30 @@
|
|||
--shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
|
||||
}
|
||||
|
||||
/* Base Styles */
|
||||
/* Base Styles - Force consistent font across dev and production */
|
||||
html {
|
||||
font-size: 16px !important;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
|
||||
font-family: 'Prompt', 'Sarabun', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
|
||||
font-size: 1rem !important;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
/* Override Quasar's default font settings for production build */
|
||||
.q-page,
|
||||
.q-layout,
|
||||
.q-card,
|
||||
.q-item,
|
||||
.q-btn,
|
||||
.q-table,
|
||||
h1, h2, h3, h4, h5, h6,
|
||||
p, span, div, a, label {
|
||||
font-family: inherit !important;
|
||||
}
|
||||
|
||||
/* Thai Language Support */
|
||||
html[lang="th"] body {
|
||||
font-family: 'Prompt', 'Sarabun', 'Inter', sans-serif;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue