From b56f10163588c98b1024c2ae2beb97f248d3ba41 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Sun, 24 Aug 2025 11:27:39 +0000 Subject: [PATCH] fix: Allow mobile chat to scroll The mobile layout container had `overflow: hidden` which prevented the chat messages area from scrolling when the content exceeded the viewport height. This change removes the `overflow: hidden` property from the `.mobile-layout-container` class in `app/globals.css` to allow the chat messages area to scroll as intended. --- app/globals.css | 1 - jules-scratch/dev.log | 0 2 files changed, 1 deletion(-) create mode 100644 jules-scratch/dev.log diff --git a/app/globals.css b/app/globals.css index 34a89add..976b5193 100644 --- a/app/globals.css +++ b/app/globals.css @@ -88,7 +88,6 @@ height: 100vh; width: 100%; background-color: hsl(var(--background)); - overflow: hidden; } .mobile-map-section { diff --git a/jules-scratch/dev.log b/jules-scratch/dev.log new file mode 100644 index 00000000..e69de29b