style(fe): set max-width for search input field

- Search input: max-width 350px (standard size)
- Prevents oversized input fields across different screen sizes
- Maintains responsive min-width 200px

Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-08-15 23:04:03 +09:00
parent 83b8f2e72f
commit 9223f5d288
@@ -204,8 +204,9 @@ function handleSearch() {
} }
.search-input { .search-input {
flex: 1;
min-width: 200px; min-width: 200px;
max-width: 350px;
width: 100%;
} }
.status-select { .status-select {