diff --git a/static/css/goals.css b/static/css/goals.css index 12f23f7..52c63fb 100644 --- a/static/css/goals.css +++ b/static/css/goals.css @@ -36,6 +36,7 @@ .goal-info { flex: 1; + min-width: 0; } .goal-title { @@ -43,6 +44,9 @@ font-weight: 600; color: #2c3e50; margin-bottom: 0.5rem; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; } .goal-status { @@ -143,6 +147,11 @@ padding: 1rem; } + .goal-title { + white-space: normal; + word-break: break-word; + } + .goal-actions { justify-content: flex-end; flex-wrap: wrap; diff --git a/static/css/notes.css b/static/css/notes.css index dbd1994..ebc1220 100644 --- a/static/css/notes.css +++ b/static/css/notes.css @@ -86,6 +86,9 @@ font-size: 1.05rem; color: #2c3e50; margin-bottom: 0.25rem; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; } .note-card-meta { diff --git a/static/css/tasks.css b/static/css/tasks.css index 3a44de2..172a61e 100644 --- a/static/css/tasks.css +++ b/static/css/tasks.css @@ -125,6 +125,9 @@ .task-title { font-weight: 600; margin-bottom: 0.25rem; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; } .task-status-badge {