Make some small fixes to table
This commit is contained in:
@@ -118,7 +118,7 @@ export const StatusTable = ({
|
|||||||
</div>
|
</div>
|
||||||
<table className='w-full text-center rounded-md'>
|
<table className='w-full text-center rounded-md'>
|
||||||
<thead>
|
<thead>
|
||||||
<tr className='bg-muted'>
|
<tr className='dark:bg-muted bg-accent/30'>
|
||||||
{!tvMode && (
|
{!tvMode && (
|
||||||
<th className={tCheckboxCn}>
|
<th className={tCheckboxCn}>
|
||||||
<input
|
<input
|
||||||
@@ -149,7 +149,11 @@ export const StatusTable = ({
|
|||||||
<tr
|
<tr
|
||||||
key={u.id}
|
key={u.id}
|
||||||
className={`
|
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' : ''}
|
${isSelected ? 'ring-2 ring-primary' : ''}
|
||||||
hover:bg-muted/75 transition-all duration-300
|
hover:bg-muted/75 transition-all duration-300
|
||||||
`}
|
`}
|
||||||
|
Reference in New Issue
Block a user