fine tune

This commit is contained in:
Felix Roos 2026-01-20 22:19:32 +01:00
parent 83d542d06a
commit 3d3130e880
No known key found for this signature in database
2 changed files with 3 additions and 3 deletions

View file

@ -113,7 +113,7 @@ export function Header({ context, embedded = false }) {
{!isEmbedded && ( {!isEmbedded && (
<button <button
title="share" title="share"
className={cx('cursor-pointer hover:opacity-50 flex items-center space-x-1 px-2')} className={cx('cursor-pointer hover:opacity-50 flex items-center space-x-1 pl-2 pr-1')}
onClick={() => setIsPanelOpened(!isPanelOpen)} onClick={() => setIsPanelOpened(!isPanelOpen)}
> >
<span>menu</span> <span>menu</span>

View file

@ -195,10 +195,10 @@ function CloseButton({ onClick }) {
return ( return (
<button <button
onClick={onClick} onClick={onClick}
className={cx('text-foreground max-h-8 min-h-8 max-w-8 min-w-8 items-center justify-center p-0 mr-2')} className={cx('text-foreground max-h-8 min-h-8 max-w-8 min-w-8 items-center justify-center p-0 mr-0.5')}
aria-label="Close Menu" aria-label="Close Menu"
> >
<XMarkIcon className="w-7 h-7" /> <XMarkIcon className="w-6 h-6" />
</button> </button>
); );
} }