Make some small fixes to table

This commit is contained in:
2025-09-24 14:10:56 -05:00
parent bd4e757318
commit db7bf75815

View File

@@ -118,7 +118,7 @@ export const StatusTable = ({
</div>
<table className='w-full text-center rounded-md'>
<thead>
<tr className='bg-muted'>
<tr className='dark:bg-muted bg-accent/30'>
{!tvMode && (
<th className={tCheckboxCn}>
<input
@@ -149,7 +149,11 @@ export const StatusTable = ({
<tr
key={u.id}
className={`
${i % 2 === 0 ? 'bg-muted/50' : 'bg-background'}
${
i % 2 === 0
? 'dark:bg-muted/20 bg-muted'
: 'dark:bg-muted/80 bg-accent/50'
}
${isSelected ? 'ring-2 ring-primary' : ''}
hover:bg-muted/75 transition-all duration-300
`}