Skip to content

Commit 887dcac

Browse files
committed
Remove top margin and ensure minimum container height for history
1 parent 7b897e0 commit 887dcac

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

src/style/HistorySideBarStyle.ts

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,12 @@ import { style } from 'typestyle';
33
export const historySideBarStyle = style({
44
display: 'flex',
55
flexDirection: 'column',
6+
7+
minHeight: '400px',
8+
9+
marginBlockStart: 0,
10+
marginBlockEnd: 0,
611
paddingLeft: 0,
7-
overflowY: 'scroll',
8-
marginBlockEnd: 0
12+
13+
overflowY: 'scroll'
914
});

0 commit comments

Comments
 (0)