fix: Triple task card height - larger cards with bigger fonts

This commit is contained in:
Rodrigo Rodriguez (Pragmatismo) 2026-01-02 14:45:05 -03:00
parent 99a92e3e5d
commit dfa22b8f4e

View file

@ -357,13 +357,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: 20px 24px; padding: 24px 28px;
padding-left: 28px; padding-left: 32px;
cursor: pointer; cursor: pointer;
transition: all 0.2s ease; transition: all 0.2s ease;
position: relative; position: relative;
overflow: hidden; overflow: hidden;
min-height: 72px; min-height: 100px;
} }
.task-card::before { .task-card::before {
@ -415,16 +415,16 @@ body:has(.tasks-app) {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
align-items: center; align-items: center;
gap: 12px; gap: 16px;
margin-bottom: 0; margin-bottom: 0;
} }
.task-card-title { .task-card-title {
font-size: 15px; font-size: 16px;
font-weight: 600; font-weight: 600;
color: var(--text, #fff); color: var(--text, #fff);
margin: 0; margin: 0;
line-height: 1.4; line-height: 1.5;
flex: 1; flex: 1;
white-space: nowrap; white-space: nowrap;
overflow: hidden; overflow: hidden;
@ -433,9 +433,9 @@ body:has(.tasks-app) {
} }
.task-card-status { .task-card-status {
font-size: 11px; font-size: 12px;
font-weight: 700; font-weight: 700;
padding: 6px 12px; padding: 8px 16px;
border-radius: 6px; border-radius: 6px;
text-transform: uppercase; text-transform: uppercase;
white-space: nowrap; white-space: nowrap;