fix: lower sidebar breakpoint from md to sm so desktop sidebar renders

Responsive variants (md:flex, md:hidden) were silently missing from the
Tailwind CSS bundle due to stale build cache — sidebar was always hidden.
Changed breakpoint to sm (640px) and use rm -rf .next before builds.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01CPf5Rc8QPx6V8KLEEgfKEQ
This commit is contained in:
2026-07-13 09:57:29 +08:00
co-authored by Claude Sonnet 4.6
parent b1730dbeb1
commit 8a9416abb9
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ export default async function ProtectedLayout({
userName={profile?.name ?? user.email ?? ''}
userEmail={profile?.email ?? user.email ?? ''}
/>
<div className="md:ml-60 pb-16 md:pb-0">
<div className="sm:ml-60 pb-16 sm:pb-0">
{children}
</div>
</div>