Skip to content

Commit 4a426cb

Browse files
committed
Fix: search result bar was to small
1 parent 19fa9f1 commit 4a426cb

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

Diff for: public/assets/app.css

+3-1
Original file line numberDiff line numberDiff line change
@@ -97208,7 +97208,7 @@ form legend {
9720897208
}
9720997209

9721097210
.search-input {
97211-
width: 200px;
97211+
width: 250px;
9721297212
}
9721397213

9721497214
.search-input .selectize-input {
@@ -97220,6 +97220,7 @@ form legend {
9722097220
#searchResultListWrapper {
9722197221
transition: linear 300ms;
9722297222
max-height: 0;
97223+
width: 250px;
9722397224
}
9722497225

9722597226
#searchResultListWrapper ul {
@@ -97230,6 +97231,7 @@ form legend {
9723097231
list-style-type: none;
9723197232
margin: 0;
9723297233
padding: 0;
97234+
width: 242px;
9723397235
}
9723497236

9723597237
#searchResultListWrapper li {

Diff for: src/assets/scss/ui/top-bar-files-search.scss

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.search-input {
2-
width: 200px;
2+
width: 250px;
33
}
44

55
.search-input .selectize-input {
@@ -11,6 +11,7 @@
1111
#searchResultListWrapper{
1212
transition: linear 300ms;
1313
max-height: 0;
14+
width: 250px;
1415
}
1516

1617
#searchResultListWrapper ul {
@@ -22,6 +23,8 @@
2223
list-style-type: none;
2324
margin: 0;
2425
padding: 0;
26+
27+
width: 242px;
2528
}
2629

2730
#searchResultListWrapper li {

0 commit comments

Comments
 (0)