fix icon sizing

This commit is contained in:
mulan xia 2024-02-01 18:18:23 -05:00
parent a4b640827e
commit 53e0597fcc
No known key found for this signature in database
GPG Key ID: C6CE526613568D73

View File

@ -240,6 +240,11 @@ Styled.ColorPreferenceLabel = styled.div`
Styled.ArrowIconContainer = styled.div`
${layoutMixins.column}
gap: 0.5ch;
svg {
height: 0.75em;
width: 0.75em;
}
`;
Styled.ArrowIcon = styled(Icon)<{ direction: 'up' | 'down'; color: 'green' | 'red' }>`