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 <noreply@anthropic.com>
This commit is contained in:
mARTin 2026-03-25 02:57:11 +01:00
parent dd16e5604a
commit 8926fe27c2
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "my-weekly-todo-list", "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", "description": "A web-based weekly task management application that organizes to-dos and calendar events in a single, intuitive weekly view",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {

View File

@ -4350,7 +4350,7 @@ h3 {
border-left: 0px !important; border-left: 0px !important;
border-right: none !important; border-right: none !important;
margin: 0 10px 0 10px !important; margin: 0 10px 0 10px !important;
overflow-x: hidden !important; overflow-x: clip !important;
word-wrap: break-word; word-wrap: break-word;
} }
.simple-view .time-column { .simple-view .time-column {