Skip to content

Commit 99be7a4

Browse files
fix(ui): align search input height with header buttons
Forces the search input to have the same height as the header buttons on mobile (h-8) and small screens (h-9) for visual consistency.
1 parent ba860a9 commit 99be7a4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/components/Header/SearchBox.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ defineExpose({ focus })
5959
name="q"
6060
:placeholder="$t('search.placeholder')"
6161
no-correct
62-
class="w-full min-w-25 ps-7 pe-8"
62+
class="w-full min-w-25 h-8 sm:h-9 ps-7 pe-8"
6363
@focus="isSearchFocused = true"
6464
@blur="isSearchFocused = false"
6565
size="small"

0 commit comments

Comments
 (0)