Skip to content

Commit

Permalink
fix: gh-88 wrong corner radius on table head.
Browse files Browse the repository at this point in the history
  • Loading branch information
riccox committed Nov 4, 2023
1 parent cd2f4e2 commit 254bb2b
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions packages/tailwind/src/style/components/table.css
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,13 @@
@apply whitespace-nowrap py-4 px-2.5 text-start text-sm font-semibold;
}

.table > thead > tr > th:first-child {
@apply rounded-tl-xl;
}
.table > thead > tr > th:last-child {
@apply rounded-tr-xl;
}

.table > tbody > tr:hover {
background-color: rgba(var(--sira-color-200), 0.5);
}
Expand Down

1 comment on commit 254bb2b

@vercel
Copy link

@vercel vercel bot commented on 254bb2b Nov 4, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.