fix: Double task card height to 200px
This commit is contained in:
parent
dfa22b8f4e
commit
e514b302d3
1 changed files with 8 additions and 8 deletions
|
|
@ -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: 24px 28px;
|
padding: 32px 32px;
|
||||||
padding-left: 32px;
|
padding-left: 40px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
transition: all 0.2s ease;
|
transition: all 0.2s ease;
|
||||||
position: relative;
|
position: relative;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
min-height: 100px;
|
min-height: 200px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.task-card::before {
|
.task-card::before {
|
||||||
|
|
@ -415,12 +415,12 @@ body:has(.tasks-app) {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
gap: 16px;
|
gap: 20px;
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.task-card-title {
|
.task-card-title {
|
||||||
font-size: 16px;
|
font-size: 18px;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
color: var(--text, #fff);
|
color: var(--text, #fff);
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
|
@ -433,10 +433,10 @@ body:has(.tasks-app) {
|
||||||
}
|
}
|
||||||
|
|
||||||
.task-card-status {
|
.task-card-status {
|
||||||
font-size: 12px;
|
font-size: 13px;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
padding: 8px 16px;
|
padding: 10px 20px;
|
||||||
border-radius: 6px;
|
border-radius: 8px;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
background: var(--surface, #1a1a1a);
|
background: var(--surface, #1a1a1a);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue