From f43d9ce21a6469973c840880004f171802b8414a Mon Sep 17 00:00:00 2001 From: Dmitry Artemov Date: Thu, 12 Sep 2024 12:07:01 +0200 Subject: [PATCH] feat(BaseTable): improve base table styles (#45) --- src/components/BaseTable/BaseTable.scss | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/components/BaseTable/BaseTable.scss b/src/components/BaseTable/BaseTable.scss index 24c1536..2301965 100644 --- a/src/components/BaseTable/BaseTable.scss +++ b/src/components/BaseTable/BaseTable.scss @@ -54,6 +54,8 @@ $block: '.#{variables.$ns}table'; &__cell, &__header-cell, &__footer-cell { + box-sizing: border-box; + padding: 0; height: inherit; text-align: start; @@ -98,11 +100,5 @@ $block: '.#{variables.$ns}table'; width: 100%; height: auto; } - - &__cell, - &__header-cell, - &__footer-cell { - display: flex; - } } }