Skip to content

Commit

Permalink
fix: css overflow issues
Browse files Browse the repository at this point in the history
  • Loading branch information
bendera committed Mar 19, 2023
1 parent 480a772 commit 537dbfa
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

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

## [0.23.1] - 2023-03-20

### Fixed

- Fix CSS overlay issue: focus border of the buttons in editor was clipped.

## [0.23.0] - 2023-03-06

### Added
Expand Down
10 changes: 2 additions & 8 deletions frontend/src/components/cme-editor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,15 +117,9 @@ export class Editor extends connect(store)(LitElement) {
@vsc-select="${this._handleTabChange}"
>
<vscode-tab-header slot="header">Edit as text</vscode-tab-header>
<vscode-tab-panel
><vscode-scrollable
>${textView}</vscode-scrollable
></vscode-tab-panel
>
<vscode-tab-panel>${textView}</vscode-tab-panel>
<vscode-tab-header slot="header">Edit as form</vscode-tab-header>
<vscode-tab-panel>
<vscode-scrollable>${formView}</vscode-scrollable></vscode-tab-panel
>
<vscode-tab-panel> ${formView}</vscode-tab-panel>
</vscode-tabs>
</div>
`;
Expand Down

0 comments on commit 537dbfa

Please sign in to comment.