fix: Increase task card size - bigger padding, larger fonts

This commit is contained in:
Rodrigo Rodriguez (Pragmatismo) 2026-01-02 14:16:22 -03:00
parent 511cc24e4d
commit 3b76907ed4

View file

@ -355,13 +355,13 @@ body:has(.tasks-app) {
background: var(--surface-hover, #141414); background: var(--surface-hover, #141414);
border: 2px solid var(--border, #2a2a2a); border: 2px solid var(--border, #2a2a2a);
border-radius: 12px; border-radius: 12px;
padding: 12px 16px; padding: 20px 24px;
padding-left: 20px; padding-left: 28px;
cursor: pointer; cursor: pointer;
transition: all 0.2s ease; transition: all 0.2s ease;
position: relative; position: relative;
overflow: hidden; overflow: hidden;
min-height: 48px; min-height: 72px;
} }
.task-card::before { .task-card::before {
@ -413,16 +413,16 @@ body:has(.tasks-app) {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
align-items: center; align-items: center;
gap: 8px; gap: 12px;
margin-bottom: 0; margin-bottom: 0;
} }
.task-card-title { .task-card-title {
font-size: 13px; font-size: 15px;
font-weight: 500; font-weight: 600;
color: var(--text, #fff); color: var(--text, #fff);
margin: 0; margin: 0;
line-height: 1.3; line-height: 1.4;
flex: 1; flex: 1;
white-space: nowrap; white-space: nowrap;
overflow: hidden; overflow: hidden;
@ -431,10 +431,10 @@ body:has(.tasks-app) {
} }
.task-card-status { .task-card-status {
font-size: 10px; font-size: 11px;
font-weight: 700; font-weight: 700;
padding: 4px 8px; padding: 6px 12px;
border-radius: 4px; border-radius: 6px;
text-transform: uppercase; text-transform: uppercase;
white-space: nowrap; white-space: nowrap;
background: var(--surface, #1a1a1a); background: var(--surface, #1a1a1a);