Skip to content

Commit

Permalink
font of figure headers is now bold
Browse files Browse the repository at this point in the history
  • Loading branch information
trbKnl committed Jul 26, 2024
1 parent 7663684 commit e904aeb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export const FigureComponent = ({
return (
<div className=' max-w overflow-hidden bg-grey6 rounded-md border-[0.2rem] border-grey4'>
<div className='flex justify-between'>
<h6 className='p-3'>{translate(visualization.title, locale)}</h6>
<div className='font-bold p-3'>{translate(visualization.title, locale)}</div>
<button onClick={toggleDouble} className={showStatus !== 'hidden' && canDouble ? 'text-primary' : 'hidden'}>
{showStatus === 'double' ? zoomOutIcon : zoomInIcon}
</button>
Expand Down

0 comments on commit e904aeb

Please sign in to comment.