Skip to content

Commit

Permalink
fix: #219 horizontal scrollbar visible in search box
Browse files Browse the repository at this point in the history
  • Loading branch information
josdejong committed Feb 2, 2023
1 parent 56e371c commit d3ffdef
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/lib/components/modes/treemode/menu/SearchBox.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
$search-size: 28px;
$button-width: 20px;
$padding-section-left: 32px;
$input-min-width: 50px;

.jse-search-box {
border: var(--jse-panel-border);
Expand Down Expand Up @@ -54,6 +55,8 @@ $padding-section-left: 32px;
padding: 0 $input-padding;
margin: 0;
flex: 1;
width: 0;
min-width: $input-min-width;
outline: none;
}

Expand Down

0 comments on commit d3ffdef

Please sign in to comment.