From e514b302d39a53fb7ff324b2a4a055dc5e0929d8 Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Fri, 2 Jan 2026 15:15:42 -0300 Subject: [PATCH] fix: Double task card height to 200px --- ui/suite/tasks/tasks.css | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/ui/suite/tasks/tasks.css b/ui/suite/tasks/tasks.css index 4ed6885..30beb2e 100644 --- a/ui/suite/tasks/tasks.css +++ b/ui/suite/tasks/tasks.css @@ -357,13 +357,13 @@ body:has(.tasks-app) { background: var(--surface-hover, #141414); border: 2px solid var(--border, #2a2a2a); border-radius: 12px; - padding: 24px 28px; - padding-left: 32px; + padding: 32px 32px; + padding-left: 40px; cursor: pointer; transition: all 0.2s ease; position: relative; overflow: hidden; - min-height: 100px; + min-height: 200px; } .task-card::before { @@ -415,12 +415,12 @@ body:has(.tasks-app) { display: flex; justify-content: space-between; align-items: center; - gap: 16px; + gap: 20px; margin-bottom: 0; } .task-card-title { - font-size: 16px; + font-size: 18px; font-weight: 600; color: var(--text, #fff); margin: 0; @@ -433,10 +433,10 @@ body:has(.tasks-app) { } .task-card-status { - font-size: 12px; + font-size: 13px; font-weight: 700; - padding: 8px 16px; - border-radius: 6px; + padding: 10px 20px; + border-radius: 8px; text-transform: uppercase; white-space: nowrap; background: var(--surface, #1a1a1a);