From f5d7e09144d1c4d01b028b0ed4a53c8131853b76 Mon Sep 17 00:00:00 2001 From: Adam Argyle Date: Tue, 28 Nov 2023 08:43:12 -0800 Subject: [PATCH] fixes #440 (#441) --- src/extra/normalize.src.css | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/extra/normalize.src.css b/src/extra/normalize.src.css index 8c43b970..a55fa8f5 100644 --- a/src/extra/normalize.src.css +++ b/src/extra/normalize.src.css @@ -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); }