update style

This commit is contained in:
root
2026-05-24 01:53:27 -04:00
parent f5292f8b6c
commit 31e06a1d61
62 changed files with 431 additions and 459 deletions
@@ -102,7 +102,7 @@ export default function RenterNotificationsPage() {
return (
<div className="shell space-y-6">
<div className="flex flex-wrap items-center justify-between gap-4">
<h1 className="text-3xl font-black tracking-tight text-stone-900">{dict.title}</h1>
<h1 className="text-3xl font-black tracking-tight text-blue-900">{dict.title}</h1>
<button
type="button"
onClick={markAllRead}
@@ -126,8 +126,8 @@ export default function RenterNotificationsPage() {
<article key={notification.id} className="card p-6">
<div className="flex flex-wrap items-center justify-between gap-3">
<div>
<p className="text-xs font-semibold uppercase tracking-[0.16em] text-amber-700">{notification.type.replaceAll('_', ' ')}</p>
<h2 className="mt-2 text-lg font-bold text-stone-900">{notification.title}</h2>
<p className="text-xs font-semibold uppercase tracking-[0.16em] text-orange-700">{notification.type.replaceAll('_', ' ')}</p>
<h2 className="mt-2 text-lg font-bold text-blue-900">{notification.title}</h2>
</div>
{notification.readAt ? (
<span className="rounded-full bg-stone-100 px-3 py-1 text-xs font-semibold text-stone-600">{dict.read}</span>
@@ -136,7 +136,7 @@ export default function RenterNotificationsPage() {
type="button"
onClick={() => markRead(notification.id)}
disabled={updating}
className="rounded-full bg-amber-100 px-3 py-1 text-xs font-semibold text-amber-800"
className="rounded-full bg-orange-100 px-3 py-1 text-xs font-semibold text-orange-800"
>
{dict.markRead}
</button>