Skip to content

Commit 537dbfa

Browse files
committed
fix: css overflow issues
1 parent 480a772 commit 537dbfa

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All notable changes to the "commit-message-editor" extension will be documented in this file.
44

5+
## [0.23.1] - 2023-03-20
6+
7+
### Fixed
8+
9+
- Fix CSS overlay issue: focus border of the buttons in editor was clipped.
10+
511
## [0.23.0] - 2023-03-06
612

713
### Added

frontend/src/components/cme-editor.ts

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -117,15 +117,9 @@ export class Editor extends connect(store)(LitElement) {
117117
@vsc-select="${this._handleTabChange}"
118118
>
119119
<vscode-tab-header slot="header">Edit as text</vscode-tab-header>
120-
<vscode-tab-panel
121-
><vscode-scrollable
122-
>${textView}</vscode-scrollable
123-
></vscode-tab-panel
124-
>
120+
<vscode-tab-panel>${textView}</vscode-tab-panel>
125121
<vscode-tab-header slot="header">Edit as form</vscode-tab-header>
126-
<vscode-tab-panel>
127-
<vscode-scrollable>${formView}</vscode-scrollable></vscode-tab-panel
128-
>
122+
<vscode-tab-panel> ${formView}</vscode-tab-panel>
129123
</vscode-tabs>
130124
</div>
131125
`;

0 commit comments

Comments
 (0)