-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
123 lines (106 loc) · 2 KB
/
Copy pathstyles.css
File metadata and controls
123 lines (106 loc) · 2 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
.plane-hub {
padding: 16px;
}
.plane-hub__header {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
margin-bottom: 12px;
}
.plane-hub__actions {
display: flex;
align-items: center;
gap: 10px;
}
.plane-hub__muted {
color: var(--text-muted);
font-size: 12px;
}
.plane-hub__section {
border: 1px solid var(--background-modifier-border);
border-radius: 10px;
padding: 12px;
margin-top: 10px;
}
.plane-hub__filters {
margin-bottom: 6px;
}
.plane-hub__row {
display: flex;
align-items: center;
justify-content: space-between;
gap: 10px;
}
.plane-hub__list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 10px;
margin-top: 10px;
}
.plane-hub__card {
border: 1px solid var(--background-modifier-border);
border-radius: 8px;
padding: 10px;
display: flex;
flex-direction: column;
gap: 6px;
}
.plane-hub__card-title {
font-weight: 600;
}
.plane-hub__card-meta {
display: flex;
flex-wrap: wrap;
gap: 6px;
color: var(--text-muted);
font-size: 12px;
}
.plane-hub__card-header {
display: flex;
align-items: center;
gap: 8px;
justify-content: space-between;
}
.plane-hub__pill {
background: var(--interactive-normal);
color: var(--text-on-accent);
padding: 2px 8px;
border-radius: 999px;
font-size: 11px;
}
.plane-input {
width: 100%;
}
.plane-board {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 12px;
margin-top: 10px;
}
.plane-board__column {
border: 1px solid var(--background-modifier-border);
border-radius: 8px;
padding: 8px;
background: var(--background-secondary);
display: flex;
flex-direction: column;
gap: 8px;
max-height: 70vh;
overflow-y: auto;
}
.plane-board__column-head {
display: flex;
justify-content: space-between;
align-items: center;
font-weight: 600;
}
.plane-board__card {
border: 1px solid var(--background-modifier-border);
border-radius: 6px;
padding: 8px;
background: var(--background-primary);
display: flex;
flex-direction: column;
gap: 6px;
}