fix(ui): fix overlapping header elements on narrow screens (#31)

- Calendar toolbar now wraps view buttons to a second row on viewports
  < 580px so nav controls and label stay readable on all iOS devices
- Tasks toolbar title no longer bleeds over action buttons; uses
  min-width:min-content so flex-wrap kicks in before overflow occurs
- Shopping list-header name gets flex:1/overflow:hidden so it truncates
  cleanly instead of colliding with the clear-checked / delete buttons
This commit is contained in:
Ulas
2026-04-06 09:46:03 +02:00
parent 8fd5ec983a
commit 0505ce406c
4 changed files with 41 additions and 2 deletions
+5 -2
View File
@@ -41,8 +41,11 @@
.tasks-toolbar__title {
font-size: var(--text-2xl);
font-weight: var(--font-weight-bold);
flex: 1;
min-width: 0;
flex: 1 1 auto;
min-width: min-content;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.tasks-toolbar__actions {