fix(ui): improve searchbar responsiveness on mobile #7
No reviewers
Labels
No Label
bug
duplicate
enhancement
help wanted
invalid
question
wontfix
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: joelson/Portalweb#7
Loading…
Reference in New Issue
No description provided.
Delete Branch "fix/searchbar-mobile-layout"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
O que foi feito
Realizado ajuste de responsividade para garantir melhor usabilidade em telas pequenas:
xs): Agora empilham verticalmente (um abaixo do outro).sm+): Permanecem lado a lado.xs): Empilham verticalmente e ocupam 100% da largura (melhorando a área de toque).sm+): Permanecem alinhados horizontalmente com espaçamento correto.Solução Técnica
flexDirection: { xs: 'column', sm: 'row' }no container de datas.flexDirection: { xs: 'column', sm: 'row' }ejustifyContent: 'space-between'.width: 100%(ou responsivo) para os botões garantirem preenchimento total no mobile.Como Testar