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:
parent
dd16e5604a
commit
8926fe27c2
@ -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": {
|
||||
|
||||
@ -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 {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user