feat: add anchor icon

This commit is contained in:
iCrawl
2022-08-23 03:06:21 +02:00
parent 434f696397
commit caa5c0332f
7 changed files with 29 additions and 17 deletions

View File

@@ -78,13 +78,15 @@ const useStyles = createStyles((theme) => ({
color: theme.colorScheme === 'dark' ? theme.colors.dark![0] : theme.colors.gray![7],
borderLeft: `1px solid ${theme.colorScheme === 'dark' ? theme.colors.dark![4] : theme.colors.gray![3]}`,
'&[data-active]': {
'&:hover': {
color: theme.white,
},
},
'&:hover': {
backgroundColor: theme.colorScheme === 'dark' ? theme.colors.dark![6] : theme.colors.gray![0],
color: theme.colorScheme === 'dark' ? theme.white : theme.black,
'&[data-active]': {
color: theme.white,
},
},
},
}));