From 589ea79550daa7144d5714ddd378404e719e1beb Mon Sep 17 00:00:00 2001 From: Alexey Sudilovskiy Date: Mon, 17 Jul 2023 20:51:04 +0200 Subject: [PATCH] fix(Table): remove redundant height with enabled sorting --- .../Table/hoc/withTableSorting/withTableSorting.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/Table/hoc/withTableSorting/withTableSorting.scss b/src/components/Table/hoc/withTableSorting/withTableSorting.scss index 5987d7c98..2490c29c2 100644 --- a/src/components/Table/hoc/withTableSorting/withTableSorting.scss +++ b/src/components/Table/hoc/withTableSorting/withTableSorting.scss @@ -6,7 +6,8 @@ $block: '.#{variables.$ns}table'; &__sort { display: inline-flex; align-items: center; - vertical-align: middle; + // `top` to avoid redundant height to appear + vertical-align: top; cursor: pointer; user-select: none;