From 8926fe27c23aaed7b766b806664e25170b115b92 Mon Sep 17 00:00:00 2001 From: mARTin Date: Wed, 25 Mar 2026 02:57:11 +0100 Subject: [PATCH] fix: restore sticky day headers on mobile in simple view overflow-x: hidden on .simple-view .weekly-day-column was creating a scrolling context that broke position: sticky on the day header. Changed to overflow-x: clip which clips content without affecting sticky. v1.73.2 Co-Authored-By: Claude Opus 4.6 --- package.json | 2 +- src/app/globals.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index b3724fb..266dcdc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "my-weekly-todo-list", - "version": "1.73.1", + "version": "1.73.2", "description": "A web-based weekly task management application that organizes to-dos and calendar events in a single, intuitive weekly view", "main": "index.js", "scripts": { diff --git a/src/app/globals.css b/src/app/globals.css index f676b5e..aceaa2a 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -4350,7 +4350,7 @@ h3 { border-left: 0px !important; border-right: none !important; margin: 0 10px 0 10px !important; - overflow-x: hidden !important; + overflow-x: clip !important; word-wrap: break-word; } .simple-view .time-column {