-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
38 lines (32 loc) · 1.05 KB
/
styles.css
File metadata and controls
38 lines (32 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/* ✅ 1. Wrap and constrain the task list container WITHOUT flex */
div:has(> div[data-task-list-id]) {
flex-wrap: wrap !important;
gap: 24px !important;
justify-content: flex-start !important;
padding: 20px !important;
overflow-x: hidden !important;
overflow-y: visible !important; /* <-- add this */
max-height: calc(100vh - 120px) !important; /* <-- add this, adjust the 120px if needed */
}
/* ✅ 2. Each task list card */
div[data-task-list-id] {
flex: 0 1 30% !important;
max-width: 100% !important;
min-width: 300px !important;
box-sizing: border-box !important;
overflow-y: scroll;
}
.FNTXYe {
overflow: scroll !important;
contain: paint !important;
}
/* Optional: allow cards to expand downward if needed */
div[data-task-list-id] > div {
display: flex;
flex-direction: column;
height: 100% !important;
}
/* ✅ 3. Don’t force width on completed section */
div[data-task-list-id] > div:not(:has([aria-label="Completed"])) {
width: 100% !important;
}