feat(ui): make IconButton square and mobile-tappable (44px min)

This commit is contained in:
Gigi
2025-10-03 00:50:12 +02:00
parent 91c68a9d48
commit 728c269a29
2 changed files with 3 additions and 1 deletions

View File

@@ -17,7 +17,7 @@ const IconButton: React.FC<IconButtonProps> = ({
title,
ariaLabel,
variant = 'ghost',
size = 28
size = 44
}) => {
return (
<button

View File

@@ -179,6 +179,8 @@ body {
background: #2a2a2a;
color: #ddd;
cursor: pointer;
min-width: 44px; /* mobile tap target */
min-height: 44px; /* mobile tap target */
}
.icon-button:hover { background: #333; }