Horizontalen Scroll verhindern: Lange Task-Titel werden überall abgeschnitten
continuous-integration/drone/push Build is passing

- Globales overflow-x: hidden auf html/body/#root in index.css
- App.tsx: overflow-x-hidden und min-w-0 auf Hauptcontainer
- TaskCard: Eltern-Task-Titel mit truncate/min-w-0 im Flex-Layout
- KanbanBoard: min-w-0 overflow-hidden auf Spalten-Cards
- FiveMinuteStarter: truncate auf Task-Titel
- HyperfocusGuard: truncate auf Task-Buttons
- TaskBreakdownModal: truncate auf Task- und Subtask-Titel
- NotificationsPage: truncate + min-w-0 auf Benachrichtigungs-Titel
This commit is contained in:
NotiBot
2026-02-03 14:59:40 +01:00
parent 79d5fae97c
commit 8e8b96fcde
8 changed files with 23 additions and 16 deletions
+6
View File
@@ -2,6 +2,12 @@
@tailwind components;
@tailwind utilities;
/* Prevent horizontal scroll globally */
html, body, #root {
overflow-x: hidden;
max-width: 100vw;
}
/* LIGHT MODE */
:root {
--button-outline: rgba(0,0,0, .10);