From d1e75f562b4c9d696d8bd9a5c2b0f1aad1644c9c Mon Sep 17 00:00:00 2001 From: Johann Rudloff Date: Mon, 3 Apr 2023 22:08:17 +0200 Subject: [PATCH] Improve column sizes in dashboard --- src/views/Dashboard.vue | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/views/Dashboard.vue b/src/views/Dashboard.vue index 6057398..2d26b45 100644 --- a/src/views/Dashboard.vue +++ b/src/views/Dashboard.vue @@ -225,15 +225,18 @@ export default { .chores-list .header-points, .chores-list .cell-points { width: 4rem; } -.chores-list .header-name, .chores-list .cell-name { +.chores-list .header-name, .chores-list .cell-title { min-width: 4rem; max-width: 100%; } +.chores-list .header-actions, .chores-list .cell-actions { + max-width: 2rem; +} .chores-list .header-assignee, .chores-list .cell-assignee { max-width: 4rem; } .chores-list .header-due, .chores-list .cell-due { - max-width: 3rem; + width: 4rem; } .chores-list .cell-points { -- 2.38.5