Fixing locale picker padding / margin (#9613)

This commit is contained in:
Marvin Frachet 2021-03-05 14:01:23 +01:00 committed by GitHub
parent 02137456a8
commit 500a7b00d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,8 +11,14 @@ const List = styled.ul`
`;
const ListItem = styled.li`
padding: ${props => props.theme.main.sizes.paddings.xs};
margin: 0;
margin-top: 0;
margin-bottom: 0;
margin-left: -10px;
margin-right: -10px;
padding-left: 10px;
padding-right: 10px;
height: 36px;
line-height: 36px;
&:hover {
background: ${props => props.theme.main.colors.lightGrey};