fix(listview): match search top padding to left/right for consistency

SearchRow top padding was 0 while left/right was sizeUnit*2 (8px).
Make them equal so the search input has uniform breathing room.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
kasiazjc
2026-05-20 14:44:03 +00:00
committed by Amin Ghadersohi
parent 75d731398e
commit d013003cf1

View File

@@ -66,7 +66,7 @@ const PanelContainer = styled.div`
const SearchRow = styled.div`
${({ theme }) => css`
padding: 0 ${theme.sizeUnit * 2}px ${theme.paddingXXS}px;
padding: ${theme.sizeUnit * 2}px ${theme.sizeUnit * 2}px ${theme.paddingXXS}px;
`}
`;