fix: conditionally render OfflineBanner and adjust main padding based on user authentication and online status

This commit is contained in:
Usman Baig
2026-02-04 11:32:14 +01:00
parent 8bc05382d8
commit 223c00a382
2 changed files with 3 additions and 3 deletions

View File

@@ -9,7 +9,7 @@ export function OfflineBanner() {
if (isOnline) return null;
return (
<div className="bg-yellow-500/10 dark:bg-yellow-500/20 border-b border-yellow-500/20 dark:border-yellow-500/30 text-yellow-600 dark:text-yellow-400 px-4 sm:px-8 py-2 text-sm flex items-center justify-center gap-2 font-medium">
<div className="rounded-b-2xl bg-yellow-500/10 dark:bg-yellow-500/20 border-b border-yellow-500/20 dark:border-yellow-500/30 text-yellow-600 dark:text-yellow-400 px-4 sm:px-8 py-2 text-sm flex items-center justify-center gap-2 font-medium">
<FiWifiOff className="w-4 h-4" />
<span>You are currently offline. Changes may not be saved.</span>
</div>