@@ -6,7 +6,7 @@ const COLUMN_COUNT = 4
66export default function ScheduledTasksLoading ( ) {
77 return (
88 < div className = 'flex h-full flex-1 flex-col overflow-hidden bg-[var(--bg)]' >
9- < div className = 'border-b border- [var(--border)] px-[24px] py-[10px]' >
9+ < div className = 'border-[var(--border)] border-b px-[24px] py-[10px]' >
1010 < div className = 'flex items-center justify-between' >
1111 < div className = 'flex items-center gap-[12px]' >
1212 < Skeleton className = 'h-[14px] w-[14px] rounded-[2px]' />
@@ -17,7 +17,7 @@ export default function ScheduledTasksLoading() {
1717 </ div >
1818 </ div >
1919 </ div >
20- < div className = 'border-b border- [var(--border)] px-[24px] py-[10px]' >
20+ < div className = 'border-[var(--border)] border-b px-[24px] py-[10px]' >
2121 < div className = 'flex items-center' >
2222 < Skeleton className = 'h-[14px] w-[14px] rounded-[2px]' />
2323 < Skeleton className = 'ml-[10px] h-[14px] w-[160px] rounded-[4px]' />
@@ -26,7 +26,7 @@ export default function ScheduledTasksLoading() {
2626 < div className = 'min-h-0 flex-1 overflow-auto' >
2727 < table className = 'w-full' >
2828 < thead >
29- < tr className = 'border-b border- [var(--border)]' >
29+ < tr className = 'border-[var(--border)] border-b ' >
3030 < th className = 'w-[40px] px-[12px] py-[8px]' >
3131 < Skeleton className = 'h-[14px] w-[14px] rounded-[2px]' />
3232 </ th >
@@ -39,7 +39,7 @@ export default function ScheduledTasksLoading() {
3939 </ thead >
4040 < tbody >
4141 { Array . from ( { length : SKELETON_ROW_COUNT } ) . map ( ( _ , rowIndex ) => (
42- < tr key = { rowIndex } className = 'border-b border- [var(--border)]' >
42+ < tr key = { rowIndex } className = 'border-[var(--border)] border-b ' >
4343 < td className = 'w-[40px] px-[12px] py-[10px]' >
4444 < Skeleton className = 'h-[14px] w-[14px] rounded-[2px]' />
4545 </ td >
0 commit comments