1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-14 00:19:16 +01:00

fix: command menu hover (#7515)

Now command menu hover has same styling as sidebar


![image](https://github.com/Unleash/unleash/assets/964450/22dd869f-0256-4922-b56a-826f1f37ff45)
This commit is contained in:
Jaanus Sellin 2024-07-02 13:34:40 +03:00 committed by GitHub
parent e916deda74
commit 1f48f9067a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -22,10 +22,6 @@ import { Children } from 'react';
export const listItemButtonStyle = (theme: Theme) => ({
border: `1px solid transparent`,
borderLeft: `${theme.spacing(0.5)} solid transparent`,
'&:hover, &:focus': {
border: `1px solid ${theme.palette.primary.main}`,
borderLeft: `${theme.spacing(0.5)} solid ${theme.palette.primary.main}`,
},
});
export const StyledTypography = styled(Typography)(({ theme }) => ({
fontSize: theme.fontSizes.bodySize,