mirror of
https://github.com/massbug/judge4c.git
synced 2025-05-17 23:12:23 +00:00
style(problemset): increase odd row background opacity in tables
This commit is contained in:
parent
424f24694b
commit
787f91b743
@ -37,7 +37,7 @@ export default async function ProblemsetPage() {
|
||||
{problems.map((problem, index) => (
|
||||
<TableRow
|
||||
key={problem.id}
|
||||
className="h-10 border-b-0 odd:bg-muted/25 hover:text-blue-500 hover:bg-muted"
|
||||
className="h-10 border-b-0 odd:bg-muted/50 hover:text-blue-500 hover:bg-muted"
|
||||
>
|
||||
<TableCell className="py-2.5">
|
||||
<Link
|
||||
|
@ -487,7 +487,7 @@ export function ProblemsetTable({ data }: ProblemTableProps) {
|
||||
<TableRow
|
||||
key={row.id}
|
||||
data-state={row.getIsSelected() && "selected"}
|
||||
className="h-10 border-b-0 cursor-pointer odd:bg-muted/25 hover:text-blue-500 hover:bg-muted"
|
||||
className="h-10 border-b-0 cursor-pointer odd:bg-muted/50 hover:text-blue-500 hover:bg-muted"
|
||||
>
|
||||
{row.getVisibleCells().map((cell) => (
|
||||
<TableCell key={cell.id} className="last:py-0">
|
||||
|
Loading…
Reference in New Issue
Block a user