Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/components/notifications/NotificationList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -124,9 +124,9 @@ export function NotificationList({
return (
<div className="space-y-6">
{/* Header with stats */}
<div className="flex items-center justify-between">
<div className="flex flex-col sm:flex-row sm:items-center sm:justify-between gap-3">
<div>
<h1 className="text-2xl font-bold text-white mb-1">Notifications</h1>
<h1 className="text-xl sm:text-2xl font-bold text-white mb-1">Notifications</h1>
<p className="text-white/60 text-sm">
{unreadCount > 0 ? `${unreadCount} unread` : 'All caught up'}
</p>
Expand Down Expand Up @@ -192,7 +192,7 @@ export function NotificationList({
key={notification.id}
onClick={() => handleNotificationClick(notification)}
className={`
relative bg-[#0a0a0a] border rounded-xl p-5 cursor-pointer transition-all
relative bg-[#0a0a0a] border rounded-xl p-4 sm:p-5 cursor-pointer transition-all
${
notification.read
? 'border-[#222] opacity-70 hover:opacity-100'
Expand Down
Loading