feat(landing): Mobile viewport optimizations

This commit is contained in:
2026-01-10 08:24:57 +01:00
parent 52158a8e48
commit fd53521992
8 changed files with 275 additions and 167 deletions

View File

@@ -1,6 +1,23 @@
@import 'tailwindcss';
@import '@nuxt/ui';
/* Prevent horizontal overflow from decorative elements (gradient orbs, etc.) */
html,
body {
overflow-x: hidden;
}
/* Ensure all content respects container boundaries on mobile (accounts for scrollbar) */
@media (max-width: 640px) {
.grid {
max-width: 100%;
}
.grid > * {
min-width: 0;
max-width: 100%;
}
}
/* Theme configuration with new teal/cyan/violet palette */
@theme {
/* Typography - Bricolage Grotesque for headings, DM Sans for body */