Skip to content

Commit

Permalink
Fix: search result bar was to small
Browse files Browse the repository at this point in the history
  • Loading branch information
Volmarg committed Apr 19, 2021
1 parent 19fa9f1 commit 4a426cb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 3 additions & 1 deletion public/assets/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -97208,7 +97208,7 @@ form legend {
}

.search-input {
width: 200px;
width: 250px;
}

.search-input .selectize-input {
Expand All @@ -97220,6 +97220,7 @@ form legend {
#searchResultListWrapper {
transition: linear 300ms;
max-height: 0;
width: 250px;
}

#searchResultListWrapper ul {
Expand All @@ -97230,6 +97231,7 @@ form legend {
list-style-type: none;
margin: 0;
padding: 0;
width: 242px;
}

#searchResultListWrapper li {
Expand Down
5 changes: 4 additions & 1 deletion src/assets/scss/ui/top-bar-files-search.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.search-input {
width: 200px;
width: 250px;
}

.search-input .selectize-input {
Expand All @@ -11,6 +11,7 @@
#searchResultListWrapper{
transition: linear 300ms;
max-height: 0;
width: 250px;
}

#searchResultListWrapper ul {
Expand All @@ -22,6 +23,8 @@
list-style-type: none;
margin: 0;
padding: 0;

width: 242px;
}

#searchResultListWrapper li {
Expand Down

0 comments on commit 4a426cb

Please sign in to comment.