From f6c977b2888746f77d3cc57a4f46d85f0d078b69 Mon Sep 17 00:00:00 2001 From: Max S Date: Tue, 17 Sep 2024 18:32:07 +0200 Subject: [PATCH] :hammer: remove max-width for cell content table --- .../Components/DesignSystem/Table/MuiTable/classes.module.scss | 1 - src/front/Components/DesignSystem/Table/MuiTable/index.tsx | 3 ++- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/front/Components/DesignSystem/Table/MuiTable/classes.module.scss b/src/front/Components/DesignSystem/Table/MuiTable/classes.module.scss index 1348e460..73041751 100644 --- a/src/front/Components/DesignSystem/Table/MuiTable/classes.module.scss +++ b/src/front/Components/DesignSystem/Table/MuiTable/classes.module.scss @@ -24,7 +24,6 @@ word-wrap: break-word; .content { - max-width: 270px; width: 100%; word-break: break-word; } diff --git a/src/front/Components/DesignSystem/Table/MuiTable/index.tsx b/src/front/Components/DesignSystem/Table/MuiTable/index.tsx index 6e5a360b..d02667a8 100644 --- a/src/front/Components/DesignSystem/Table/MuiTable/index.tsx +++ b/src/front/Components/DesignSystem/Table/MuiTable/index.tsx @@ -93,7 +93,8 @@ export default function MuiTable(props: IProps) { + color={ETypoColor.COLOR_NEUTRAL_900} + > {cell.value && typeof cell.value === "object" && "content" in cell.value ? cell.value.content : cell.value}