fine tune

This commit is contained in:
Felix Roos
2026-01-20 22:19:32 +01:00
parent 83d542d06a
commit 3d3130e880
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -113,7 +113,7 @@ export function Header({ context, embedded = false }) {
{!isEmbedded && (
<button
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)}
>
<span>menu</span>
+2 -2
View File
@@ -195,10 +195,10 @@ function CloseButton({ onClick }) {
return (
<button
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"
>
<XMarkIcon className="w-7 h-7" />
<XMarkIcon className="w-6 h-6" />
</button>
);
}