mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Hover on the left menu items
This commit is contained in:
parent
90c8837c39
commit
7cd8fee664
2 changed files with 16 additions and 1 deletions
|
|
@ -167,6 +167,7 @@ export function LibraryGridCard(props: LinkedItemCardProps): JSX.Element {
|
|||
height: '30px',
|
||||
width: '30px',
|
||||
mt: '-5px',
|
||||
mr: '-5px',
|
||||
alignItems: 'center',
|
||||
justifyContent: 'center',
|
||||
borderRadius: '1000px',
|
||||
|
|
|
|||
|
|
@ -166,7 +166,21 @@ function MenuPanel(props: MenuPanelProps): JSX.Element {
|
|||
{props.editTitle && props.editFunc && (
|
||||
<Dropdown
|
||||
triggerElement={
|
||||
<DotsThree size={25} weight="bold" color="#BEBEBE" />
|
||||
<Box
|
||||
css={{
|
||||
display: 'flex',
|
||||
height: '30px',
|
||||
width: '30px',
|
||||
alignItems: 'center',
|
||||
justifyContent: 'center',
|
||||
borderRadius: '1000px',
|
||||
'&:hover': {
|
||||
bg: '#EBEBEB',
|
||||
},
|
||||
}}
|
||||
>
|
||||
<DotsThree size={25} weight="bold" color="#BEBEBE" />
|
||||
</Box>
|
||||
}
|
||||
>
|
||||
<DropdownOption
|
||||
|
|
|
|||
Loading…
Reference in a new issue