diff --git a/package.json b/package.json index 4494d1f..91a60b4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "my-weekly-todo-list", - "version": "1.15.0", + "version": "1.15.1", "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 728bac3..cfee49d 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -958,8 +958,9 @@ h3 { align-items: center; gap: 2px; position: absolute; - right: 0; - top: -26px; + left: 0; + right: auto; + top: -28px; background: var(--weekly-bg, white); border: 1px solid var(--weekly-border, #e0e0e0); border-radius: 6px; @@ -3306,6 +3307,7 @@ h3 { opacity: 1; pointer-events: auto; visibility: visible; + top: -45px; /* Larger offset for mobile to avoid text overlap */ } /* Larger tap targets for action buttons */ .task-action-btn { diff --git a/src/components/WeeklyView.tsx b/src/components/WeeklyView.tsx index 9c94ff1..9006b0f 100644 --- a/src/components/WeeklyView.tsx +++ b/src/components/WeeklyView.tsx @@ -6811,7 +6811,7 @@ function TaskItem({ return (
  • { @@ -6992,7 +6992,7 @@ function TaskItem({ }} /> )} - {task.externalProvider && ( + {task.externalProvider && !isSomeday && (