We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db804ce commit 1bd564bCopy full SHA for 1bd564b
src/style/BranchMenu.ts
@@ -97,6 +97,7 @@ export const newBranchButtonClass = style({
97
export const listWrapperClass = style({
98
display: 'block',
99
width: '100%',
100
+ minHeight: '150px',
101
maxHeight: '400px',
102
103
overflow: 'hidden',
src/style/FileListStyle.ts
@@ -2,7 +2,12 @@ import { style } from 'typestyle';
2
3
export const fileListWrapperClass = style({
4
height: 'auto',
5
- paddingBottom: '40px'
6
+ maxHeight: '400px',
7
+ paddingBottom: '40px',
8
+
9
+ overflow: 'hidden',
10
+ overflowY: 'scroll'
11
});
12
13
export const moveFileUpButtonStyle = style({
0 commit comments