Skip to content

Commit

Permalink
workspace: fix input dialog styling (#12158)
Browse files Browse the repository at this point in the history
The commit fixes the styling of the `WorkspaceInputDialog` to include some additional padding between the content and the input.

Signed-off-by: Natali <[email protected]>
  • Loading branch information
nnacin authored Feb 8, 2023
1 parent a60077e commit 52d6e87
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/workspace/src/browser/workspace-input-dialog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ export class WorkspaceInputDialog extends SingleTextInputDialog {
icon.style.marginRight = '0.5em';
icon.style.verticalAlign = 'middle';
element.style.verticalAlign = 'middle';
element.style.paddingBottom = '1em';
element.title = this.props.parentUri.path.fsPath();
element.appendChild(icon);
element.appendChild(document.createTextNode(label));
Expand Down

0 comments on commit 52d6e87

Please sign in to comment.