Skip to content

Commit 337ab02

Browse files
committed
fix extension viewlet shift
1 parent a8f5f3e commit 337ab02

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/vs/workbench/contrib/extensions/browser/extensionsViewlet.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@ export class ExtensionsViewlet extends ViewContainerViewlet implements IExtensio
442442
if (this.searchBox) {
443443
this.searchBox.layout({ height: 20, width: dimension.width - 34 });
444444
}
445-
super.layout(new Dimension(dimension.width, dimension.height - 38));
445+
super.layout(new Dimension(dimension.width, dimension.height - 41));
446446
}
447447

448448
getOptimalWidth(): number {

src/vs/workbench/contrib/extensions/browser/media/extensionsViewlet.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
}
2626

2727
.extensions-viewlet > .extensions {
28-
height: calc(100% - 38px);
28+
height: calc(100% - 41px);
2929
}
3030

3131
.extensions-viewlet > .extensions .extension-view-header .monaco-action-bar {

0 commit comments

Comments
 (0)