fix styles on network label

This commit is contained in:
Agustín Longoni 2021-06-01 14:16:48 -03:00
parent edfbf4b649
commit 6e0dccd28c
2 changed files with 3 additions and 2 deletions

View File

@ -31,7 +31,7 @@ const StyledLink = styled.a`
text-decoration: none; text-decoration: none;
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
padding: 12px 16px 12px 0; padding: 14px 16px 14px 0;
:hover { :hover {
background-color: ${({ theme }) => theme.colors.background}; background-color: ${({ theme }) => theme.colors.background};

View File

@ -24,7 +24,8 @@ const useStyles = makeStyles({
lineHeight: 'normal', lineHeight: 'normal',
margin: '0', margin: '0',
padding: `${xs} ${sm}`, padding: `${xs} ${sm}`,
width: 'fit-content', minWidth: '70px',
textAlign: 'center',
}, },
}) })