From f5bc4e2ae468b6550192c758451c12c9338571c9 Mon Sep 17 00:00:00 2001 From: Evan Reichard Date: Sun, 17 May 2026 18:16:46 -0400 Subject: [PATCH] chore: no zoom on mobile --- frontend/public/index.html | 2 +- frontend/styles.css | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/frontend/public/index.html b/frontend/public/index.html index d565766..3cce1ce 100644 --- a/frontend/public/index.html +++ b/frontend/public/index.html @@ -4,7 +4,7 @@ Aethera - AI Conversation & Image Generator diff --git a/frontend/styles.css b/frontend/styles.css index dad0d5d..96b3847 100644 --- a/frontend/styles.css +++ b/frontend/styles.css @@ -12,6 +12,14 @@ body { background: var(--color-primary-50); } +@media (max-width: 767px) { + input, + textarea, + select { + font-size: 16px; + } +} + [x-cloak] { display: none !important; }