mirror of
https://github.com/apache/superset.git
synced 2026-05-21 15:55:10 +00:00
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:
committed by
Amin Ghadersohi
parent
75d731398e
commit
d013003cf1
@@ -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;
|
||||
`}
|
||||
`;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user