From 9efba6e937465d31c73e47a5da2091fdf41be6e5 Mon Sep 17 00:00:00 2001 From: Sam Becker Date: Sat, 27 Apr 2024 21:26:57 -0500 Subject: [PATCH] Tweak admin photos layout --- src/app/admin/photos/page.tsx | 2 +- src/components/InfoBlock.tsx | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/admin/photos/page.tsx b/src/app/admin/photos/page.tsx index 618e9996..d781ac01 100644 --- a/src/app/admin/photos/page.tsx +++ b/src/app/admin/photos/page.tsx @@ -38,7 +38,7 @@ export default async function AdminPhotosPage({ return ( +
{ diff --git a/src/components/InfoBlock.tsx b/src/components/InfoBlock.tsx index 6f17a363..c5014529 100644 --- a/src/components/InfoBlock.tsx +++ b/src/components/InfoBlock.tsx @@ -22,10 +22,10 @@ export default function InfoBlock({ 'dark:bg-gray-900/40 dark:border-gray-800', ]; case 'blue': return [ - 'text-gray-700/70', - 'dark:text-gray-300/75', - 'bg-blue-50 border-blue-200', - 'dark:bg-blue-900/25 dark:border-blue-800/35', + 'text-gray-700/80', + 'dark:text-gray-300/60', + 'bg-blue-50/50 border-blue-200', + 'dark:bg-blue-950/30 dark:border-blue-700/45', ]; } };