We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1482e9f commit 74f1619Copy full SHA for 74f1619
CHANGELOG.md
@@ -7,6 +7,9 @@
7
### Changed
8
- Improved syntax highlighting for f-strings, operators and numeric literals.
9
10
+### Fixed
11
+- Fixed clipping of code completion popup by terminal.
12
+
13
## [2.1.0-beta.2] - 2022-12-26
14
15
src/app/app.scss
@@ -167,8 +167,10 @@ $dark-splitter-color-hover: color.adjust(
167
}
168
169
170
-.splitter-layout .layout-pane {
171
- overflow: hidden;
+// we want overflow visible for editor overlays but it breaks resizing
+// so we can only apply this when not resizing
172
+.splitter-layout:not(.layout-changing) > .layout-pane {
173
+ overflow: visible;
174
175
176
// hide the docs and resize separator
0 commit comments