Skip to content

Commit

Permalink
Fix scrollbars partially blocking code completion (#15736)
Browse files Browse the repository at this point in the history
* Added overflow-x: hidden in jp-Completer-list css to suppress horizontal scrollbars

* Removed second overflow-x & changed original overflow-x to hidden
  • Loading branch information
phil-zxx committed Feb 4, 2024
1 parent d9d578c commit b887949
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/completer/style/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
padding: 0;
list-style-type: none;
overflow-y: scroll;
overflow-x: auto;
overflow-x: hidden;
max-height: calc((10 * var(--jp-private-completer-item-height)));
min-height: calc(var(--jp-private-completer-item-height));
width: 100%;
Expand Down

0 comments on commit b887949

Please sign in to comment.