Skip to content

Commit

Permalink
feat: use for border radius -box instead of -xl so they can match mit…
Browse files Browse the repository at this point in the history
… theme configuration (#1779)
  • Loading branch information
Wenish committed May 4, 2023
1 parent a2925a2 commit 0bf3f4e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/components/styled/table.css
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@
:where(*:first-child) {
:where(th, td) {
&:first-child {
@apply rounded-tl-lg;
@apply rounded-tl-box;
}

&:last-child {
@apply rounded-tr-lg;
@apply rounded-tr-box;
}
}
}
Expand All @@ -62,12 +62,12 @@
:where(*:last-child) {
:where(th, td) {
&:first-child {
@apply rounded-bl-lg;
@apply rounded-bl-box;
}

&:last-child {
@apply rounded-br-lg;
@apply rounded-br-box;
}
}
}
}
}

0 comments on commit 0bf3f4e

Please sign in to comment.