Skip to content

Commit be1df97

Browse files
Fix jitter in git panel (#1306)
* Fix jitter in git panel * Fix github link --------- Co-authored-by: Frédéric Collonval <[email protected]>
1 parent 1c2ea6d commit be1df97

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444

4545
### Documentation improvements
4646

47-
- add kentarolim10 as a contributor for code [#1297](https://github.com/jupyterlab/jupyterlab-git/pull/1297) ([@allcontributors](https://github.com/allcontributors))
47+
- add kentarolim10 as a contributor for code [#1297](https://github.com/jupyterlab/jupyterlab-git/pull/1297) ([@allcontributors](https://github.com/all-contributors))
4848
- Add constrain in install instructions [#1271](https://github.com/jupyterlab/jupyterlab-git/pull/1271) ([@fcollonval](https://github.com/fcollonval))
4949
- Hotfix/dependency update [#1249](https://github.com/jupyterlab/jupyterlab-git/pull/1249) ([@mfakaehler](https://github.com/mfakaehler))
5050

src/style/GitStageStyle.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ export const sectionAreaStyle = style(
1212
borderBottom: 'var(--jp-border-width) solid var(--jp-border-color2)',
1313
letterSpacing: '1px',
1414
fontSize: '12px',
15+
overflowY: 'hidden',
16+
height: '16px',
1517

1618
$nest: {
1719
'&:hover': {

src/style/GitStashStyle.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ export const sectionHeaderLabelStyle = style({
2020
overflow: 'hidden',
2121
whiteSpace: 'nowrap',
2222
display: 'flex',
23-
justifyContent: 'space-between'
23+
justifyContent: 'space-between',
24+
alignSelf: 'flex-start'
2425
});
2526

2627
export const sectionButtonContainerStyle = style({

0 commit comments

Comments
 (0)