mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Set width and height on infolink so its positioned correctly
This commit is contained in:
parent
8ca17ddc24
commit
25fffa5e14
1 changed files with 4 additions and 1 deletions
|
|
@ -20,7 +20,10 @@ export function InfoLink(props: InfoLinkProps): JSX.Element {
|
|||
marginLeft: '10px',
|
||||
}}
|
||||
>
|
||||
<a href={props.href} style={{ textDecoration: 'none' }}>
|
||||
<a
|
||||
href={props.href}
|
||||
style={{ textDecoration: 'none', width: '24px', height: '24px' }}
|
||||
>
|
||||
<TooltipWrapped
|
||||
tooltipContent="Learn More"
|
||||
tooltipSide={'top'}
|
||||
|
|
|
|||
Loading…
Reference in a new issue