From a592ac40e99769081231ab320185edb846fa2670 Mon Sep 17 00:00:00 2001 From: mARTin Date: Sun, 8 Mar 2026 00:12:34 +0100 Subject: [PATCH] fix: move mobile task action toolbar above task text to prevent overlap Use bottom: 100% instead of fixed top offset so toolbar always sits above the task regardless of task height. v1.15.4 Co-Authored-By: Claude Opus 4.6 --- package-lock.json | 4 ++-- package.json | 2 +- src/app/globals.css | 4 +++- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index 629d68a..bddbb27 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "my-weekly-todo-list", - "version": "1.15.3", + "version": "1.15.4", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "my-weekly-todo-list", - "version": "1.15.3", + "version": "1.15.4", "license": "MIT", "dependencies": { "@auth/prisma-adapter": "^2.11.1", diff --git a/package.json b/package.json index 51b1888..797675c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "my-weekly-todo-list", - "version": "1.15.3", + "version": "1.15.4", "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 cfee49d..123fe86 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -3307,7 +3307,9 @@ h3 { opacity: 1; pointer-events: auto; visibility: visible; - top: -45px; /* Larger offset for mobile to avoid text overlap */ + bottom: 100%; + top: auto; + margin-bottom: 4px; } /* Larger tap targets for action buttons */ .task-action-btn {