stlyes fixes
This commit is contained in:
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user