From 6b292f8d0792dbdb966fd97dd515dec1b929dbe0 Mon Sep 17 00:00:00 2001 From: mARTin Date: Sun, 29 Mar 2026 16:40:16 +0200 Subject: [PATCH] fix: remove sticky weekday header inside scroll area on mobile The .time-grid-wrapper .weekly-day-header was set to position:sticky, causing the day name (MITTWOCH 1. APR.) to appear as a ghost header while scrolling. The correct sticky element on mobile is the existing day-bar overlay (DO 2.4.) at the top. Reverted .weekly-day-header to position:relative. v1.77.6 --- package.json | 2 +- src/app/globals.css | 6 +----- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index d186511..b638e12 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "my-weekly-todo-list", - "version": "1.77.5", + "version": "1.77.6", "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 73ee5ad..3065be7 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -3178,11 +3178,7 @@ h3 { .time-grid-wrapper .weekly-day-header { flex-shrink: 0; - /* Sticky works because time-grid-wrapper is the overflow-y:auto ancestor */ - position: sticky; - top: 0; - z-index: 20; - background-color: var(--weekly-bg, white); + position: relative; } .time-grid-wrapper .time-slots-container {