Tweak admin photos layout

This commit is contained in:
Sam Becker 2024-04-27 21:26:57 -05:00
parent 80661561ca
commit 9efba6e937
2 changed files with 5 additions and 5 deletions

View File

@ -38,7 +38,7 @@ export default async function AdminPhotosPage({
return (
<SiteGrid
contentMain={
<div className="space-y-8">
<div className="space-y-4">
<PhotoUpload
shouldResize={!PRO_MODE_ENABLED}
onLastUpload={async () => {

View File

@ -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',
];
}
};