From de36eaa71b54f3f5be91bbba21ba3a5eb6eed281 Mon Sep 17 00:00:00 2001 From: Inna Atanasova <39598672+InnaAtanasova@users.noreply.github.com> Date: Tue, 25 Jun 2024 10:11:24 -0400 Subject: [PATCH] fix(platform): add fix for incorrect font weight for column header in sorted state (#12018) --- libs/platform/table/table.component.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libs/platform/table/table.component.scss b/libs/platform/table/table.component.scss index d4b5fd34302..ab7f4a6e0f0 100644 --- a/libs/platform/table/table.component.scss +++ b/libs/platform/table/table.component.scss @@ -634,3 +634,7 @@ fdk-dynamic-portal { .fdp-table--no-outer-border.fd-table--no-vertical-borders .fd-table__cell:last-child { border-left-style: none; } + +th.fd-table__cell .fd-table__inner { + font-weight: 700; +}