From 4df93aa45acc9c8d17721cbc683774ee415a405d Mon Sep 17 00:00:00 2001 From: Andreas Andersson Date: Tue, 12 May 2026 09:59:40 +0200 Subject: [PATCH] Update text-align property for table headers The vendor prefix -webkit-match-parent is no longer a valid property --- scss/_reboot.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scss/_reboot.scss b/scss/_reboot.scss index 524645fb02fc..d1476d17f56e 100644 --- a/scss/_reboot.scss +++ b/scss/_reboot.scss @@ -356,12 +356,12 @@ caption { // 1. Removes font-weight bold by inheriting // 2. Matches default `` alignment by inheriting `text-align`. -// 3. Fix alignment for Safari +// 3. Fix alignment th { font-weight: $table-th-font-weight; // 1 text-align: inherit; // 2 - text-align: -webkit-match-parent; // 3 + text-align: match-parent; // 3 } thead,