Skip to content

Commit dd1ec93

Browse files
committed
more margin tweaks
1 parent ace5565 commit dd1ec93

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

src/vs/workbench/contrib/interactiveEditor/browser/interactiveEditor.css

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,12 +90,16 @@
9090
/* status */
9191

9292
.monaco-editor .interactive-editor .status {
93-
margin-top: 4px;
93+
margin-top: 3px;
9494
display: flex;
9595
justify-content: space-between;
9696
align-items: center;
9797
}
9898

99+
.monaco-editor .interactive-editor .status.actions {
100+
margin-top: 6px;
101+
}
102+
99103
.monaco-editor .interactive-editor .status .actions.hidden {
100104
display: none;
101105
}

src/vs/workbench/contrib/interactiveEditor/browser/interactiveEditorWidget.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -423,6 +423,7 @@ export class InteractiveEditorWidget {
423423
updateToolbar(show: boolean) {
424424
this._elements.statusToolbar.classList.toggle('hidden', !show);
425425
this._elements.feedbackToolbar.classList.toggle('hidden', !show);
426+
this._elements.status.classList.toggle('actions', show);
426427
this._onDidChangeHeight.fire();
427428
}
428429

0 commit comments

Comments
 (0)