Skip to content

Commit

Permalink
fixes #440 (#441)
Browse files Browse the repository at this point in the history
  • Loading branch information
argyleink committed Nov 28, 2023
1 parent 9b96408 commit f5d7e09
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/extra/normalize.src.css
Original file line number Diff line number Diff line change
Expand Up @@ -305,26 +305,26 @@
}

:where(table:not(:has(tfoot)) tr:last-child td:first-child) {
border-bottom-left-radius: var(--nice-inner-radius);
border-end-start-radius: var(--nice-inner-radius);
}

:where(table:not(:has(tfoot)) tr:last-child td:last-child) {
border-bottom-right-radius: var(--nice-inner-radius);
border-end-end-radius: var(--nice-inner-radius);
}

:where(table thead th:first-child) {
border-top-left-radius: var(--nice-inner-radius);
:where(table thead tr:first-child th:first-child) {
border-start-start-radius: var(--nice-inner-radius);
}

:where(table thead th:last-child) {
border-top-right-radius: var(--nice-inner-radius);
:where(table thead tr:first-child th:last-child) {
border-start-end-radius: var(--nice-inner-radius);
}

:where(tfoot th:first-of-type) {
:where(tfoot tr:last-child :is(th,td):first-of-type) {
border-end-start-radius: var(--nice-inner-radius);
}

:where(tfoot th:last-of-type) {
:where(tfoot tr:last-child :is(th,td):last-of-type) {
border-end-end-radius: var(--nice-inner-radius);
}

Expand Down

0 comments on commit f5d7e09

Please sign in to comment.