From: Jérôme Benoit Date: Sat, 2 Mar 2024 14:07:20 +0000 (+0100) Subject: refactor(ui): refine CS table width sizing X-Git-Tag: v1.2.38~2 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=97ea01ab1ab0078f6b9c0b7c7c9fdfa2592abb3a;p=e-mobility-charging-stations-simulator.git refactor(ui): refine CS table width sizing Signed-off-by: Jérôme Benoit --- diff --git a/ui/web/src/components/charging-stations/CSTable.vue b/ui/web/src/components/charging-stations/CSTable.vue index a44f16c1..fc1f6a5c 100644 --- a/ui/web/src/components/charging-stations/CSTable.vue +++ b/ui/web/src/components/charging-stations/CSTable.vue @@ -83,7 +83,7 @@ const $emit = defineEmits(['need-refresh']) .cs-table__column { height: fit-content; - width: calc(65% / 10); + width: calc((100% - calc(100% / 3)) / 10); display: flex; flex-direction: column; text-align: center; @@ -95,7 +95,7 @@ const $emit = defineEmits(['need-refresh']) .cs-table__connectors-column { height: fit-content; - width: 35%; + width: calc(100% / 3); display: flex; flex-direction: column; }