Minor style bugfix

This commit is contained in:
Aria Minaei 2021-08-20 11:38:12 +02:00
parent 163758c2d2
commit 2a45c68374
2 changed files with 2 additions and 1 deletions

View file

@ -32,7 +32,7 @@ const Container = styled.div`
width: 20px;
${pointerEventsAutoInNormalMode};
}
ب &:hover:before {
&:hover:before {
top: -12px;
width: 300px;
}

View file

@ -4,6 +4,7 @@ import BasicPopover from './BasicPopover'
const BasicTooltip = styled(BasicPopover)`
padding: 1em;
max-width: 240px;
pointer-events: none;
`
export default BasicTooltip