We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d2a3e45 + aae603e commit 5a975c8Copy full SHA for 5a975c8
ui/src/components/search/search-bar.tsx
@@ -33,7 +33,7 @@ export const SearchBar = (props: Props) => {
33
34
const placeholder = useMemo(() => placeholders[Math.floor(Math.random() * placeholders.length)], []);
35
return (
36
- <div className="d-flex flex-row align-items-center">
+ <div className="d-flex flex-row align-items-center gap-1">
37
<input
38
value={value}
39
onChange={(e) => {
@@ -77,7 +77,7 @@ export const SearchBar = (props: Props) => {
77
<option value={100}>Limit 100</option>
78
</select>
79
<button
80
- className="btn btn-primary ms-1"
+ className="btn btn-primary"
81
onClick={() => {
82
if (value === '') {
83
toast.error('Please enter a search term', {
0 commit comments