diff options
| author | Claude <noreply@anthropic.com> | 2026-02-18 11:03:21 +0000 |
|---|---|---|
| committer | Claude <noreply@anthropic.com> | 2026-02-18 11:03:21 +0000 |
| commit | 2846d053f18a7f2d92aa28ccd83ccfb47d80170d (patch) | |
| tree | bd74544e90643dda6d6d34000fb17a9ffe408066 /frontend/src/components | |
| parent | 7ff02cd24054ba6a629478cb20f565c7c6c76fbd (diff) | |
| download | feedaka-2846d053f18a7f2d92aa28ccd83ccfb47d80170d.tar.gz feedaka-2846d053f18a7f2d92aa28ccd83ccfb47d80170d.tar.zst feedaka-2846d053f18a7f2d92aa28ccd83ccfb47d80170d.zip | |
fix(frontend): hide loading spinner on mobile when feed sidebar is hidden
The Suspense fallback (LoadingSpinner) was visible on mobile even though
FeedSidebar itself had `hidden md:block`. Move the responsive hiding
classes to a wrapper div so both the spinner and the sidebar are hidden
on mobile screens.
https://claude.ai/code/session_01Nfc9gnkDPgnXZwEWyGrb9U
Diffstat (limited to 'frontend/src/components')
| -rw-r--r-- | frontend/src/components/FeedSidebar.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/components/FeedSidebar.tsx b/frontend/src/components/FeedSidebar.tsx index e196127..209be23 100644 --- a/frontend/src/components/FeedSidebar.tsx +++ b/frontend/src/components/FeedSidebar.tsx @@ -28,7 +28,7 @@ export function FeedSidebar({ basePath, isReadView = false }: Props) { }; return ( - <nav className="hidden w-56 shrink-0 md:block"> + <nav> <h2 className="mb-3 text-xs font-semibold uppercase tracking-wide text-stone-400"> Feeds </h2> |
