diff options
| author | nsfisis <nsfisis@gmail.com> | 2025-08-22 23:20:58 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2025-08-22 23:20:58 +0900 |
| commit | ce9f81abd531707b7341a5d92544954ab18ac390 (patch) | |
| tree | 8bddd40bbb267424e7cb2871bf91aef7d6a1774a | |
| parent | 987f78ac25af119796c6f3830a61aafcabeb2dc1 (diff) | |
| download | feedaka-ce9f81abd531707b7341a5d92544954ab18ac390.tar.gz feedaka-ce9f81abd531707b7341a5d92544954ab18ac390.tar.zst feedaka-ce9f81abd531707b7341a5d92544954ab18ac390.zip | |
fix(frontend): menu item spacingv0.3.3
| -rw-r--r-- | frontend/src/components/MenuItem.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/components/MenuItem.tsx b/frontend/src/components/MenuItem.tsx index d5be2c2..29e397c 100644 --- a/frontend/src/components/MenuItem.tsx +++ b/frontend/src/components/MenuItem.tsx @@ -15,7 +15,7 @@ export function MenuItem({ path, label, icon }: Props) { return ( <Link href={path} - className={`flex items-center space-x-2 px-3 py-2 rounded-md text-sm font-medium transition-colors ${ + className={`flex items-center sm:space-x-2 px-3 py-2 rounded-md text-sm font-medium transition-colors ${ isActive ? "bg-blue-100 text-blue-700" : "text-gray-600 hover:text-gray-900 hover:bg-gray-100" |
