stlyes fixes

This commit is contained in:
IGNY8 VPS (Salman)
2025-12-29 19:52:51 +00:00
parent c91175fdcb
commit 4f7ab9c606
155 changed files with 1576 additions and 2489 deletions

View File

@@ -105,7 +105,7 @@ export const createContentPageConfig = (
{handlers.onRowClick ? (
<button
onClick={() => handlers.onRowClick!(row)}
className="text-base font-light text-blue-500 hover:text-blue-600 hover:underline text-left transition-colors"
className="text-base font-light text-brand-500 hover:text-brand-600 hover:underline text-left transition-colors"
>
{row.title || `Content #${row.id}`}
</button>
@@ -324,9 +324,9 @@ export const createContentPageConfig = (
imageStatus = 'pending';
}
const imageStatusColors: Record<string, string> = {
'pending': 'text-amber-500 dark:text-amber-400',
'generated': 'text-green-500 dark:text-green-400',
'failed': 'text-red-500 dark:text-red-400',
'pending': 'text-warning-500 dark:text-warning-400',
'generated': 'text-success-500 dark:text-success-400',
'failed': 'text-error-500 dark:text-error-400',
};
const imageStatusTitles: Record<string, string> = {
'pending': 'Images pending',