File tree 2 files changed +11
-5
lines changed
2 files changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -282,7 +282,7 @@ export default {
282
282
283
283
.board {
284
284
position: relative;
285
- overflow: auto;
285
+ overflow-x : auto;
286
286
flex-grow: 1;
287
287
scrollbar-gutter: stable;
288
288
}
@@ -296,6 +296,7 @@ export default {
296
296
align-items: stretch;
297
297
gap: $board-gap;
298
298
padding: 0 $board-gap;
299
+ height: 100%;
299
300
300
301
&:deep(.stack-draggable-wrapper.smooth-dnd-draggable-wrapper) {
301
302
display: flex;
@@ -312,7 +313,9 @@ export default {
312
313
display: flex;
313
314
flex-direction: column;
314
315
gap: $stack-gap;
315
- padding: 5px 0 $stack-gap;
316
+ padding: 5px calc(#{$stack-gap / 2}) $stack-gap;
317
+ margin: 0 calc(#{$stack-gap / -2});
318
+ overflow-y: auto;
316
319
scrollbar-gutter: stable;
317
320
}
318
321
Original file line number Diff line number Diff line change @@ -162,7 +162,7 @@ export default {
162
162
163
163
.overview {
164
164
position: relative;
165
- overflow: auto;
165
+ overflow-x : auto;
166
166
flex-grow: 1;
167
167
scrollbar-gutter: stable;
168
168
display: flex;
@@ -212,15 +212,18 @@ export default {
212
212
white-space: nowrap;
213
213
overflow: hidden;
214
214
text-overflow: ellipsis;
215
- padding: 4px ;
215
+ padding: $card-padding ;
216
216
font-size: var(--default-font-size);
217
217
}
218
218
219
219
.dashboard-column__list {
220
220
display: flex;
221
221
flex-direction: column;
222
222
gap: $stack-gap;
223
- padding: 5px 0 $stack-gap;
223
+ padding: 5px calc(#{$stack-gap / 2}) $stack-gap;
224
+ margin: 0 calc(#{$stack-gap / -2});
225
+ overflow-y: auto;
226
+ scrollbar-gutter: stable;
224
227
}
225
228
}
226
229
}
You can’t perform that action at this time.
0 commit comments