From cd89dff9fac6f52562768fcd4875742033050696 Mon Sep 17 00:00:00 2001 From: JuruSysadmin Date: Thu, 15 Jan 2026 17:44:12 -0300 Subject: [PATCH] fix(ui): improve searchbar responsiveness on mobile --- src/features/orders/components/SearchBar.tsx | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/src/features/orders/components/SearchBar.tsx b/src/features/orders/components/SearchBar.tsx index a21dbdb..7ef05c8 100644 --- a/src/features/orders/components/SearchBar.tsx +++ b/src/features/orders/components/SearchBar.tsx @@ -257,7 +257,7 @@ export const SearchBar = () => { {/* Datas */} - + { {/* Ações */} - + - + @@ -330,7 +332,8 @@ export const SearchBar = () => { onClick={handleFilter} disabled={!isDateValid || !!dateError || isFetching} startIcon={isFetching ? : } - sx={{ textTransform: 'none', minWidth: 100 }} + fullWidth + sx={{ textTransform: 'none', minWidth: { xs: '100%', sm: 100 } }} > Buscar -- 2.40.1