Skip to content

Commit 0a36d75

Browse files
committed
fix(board): extra bottom margin
1 parent 328bcd0 commit 0a36d75

File tree

1 file changed

+2
-3
lines changed
  • apps/client/src/widgets/collections/board

1 file changed

+2
-3
lines changed

apps/client/src/widgets/collections/board/index.css

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
.board-view {
2-
overflow-x: auto;
32
position: relative;
43
height: 100%;
54
user-select: none;
@@ -20,7 +19,6 @@ body.mobile .board-view {
2019
display: flex;
2120
gap: 1em;
2221
padding: 1em;
23-
padding-bottom: 0;
2422
align-items: flex-start;
2523
}
2624

@@ -127,7 +125,8 @@ body.mobile .board-view-container .board-column {
127125

128126
.board-view-container .board-column > .board-column-content {
129127
flex-grow: 1;
130-
overflow: scroll;
128+
overflow-x: hidden;
129+
overflow-y: auto;
131130
padding: 0.5em;
132131
}
133132

0 commit comments

Comments
 (0)