From 7be35e502da734096424f2f8e6311f01fdab5b19 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Thu, 7 Mar 2024 22:40:51 +0100 Subject: [PATCH] refactor(ui): refine container border sizing MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- ui/web/src/App.vue | 2 +- ui/web/src/components/charging-stations/CSTable.vue | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ui/web/src/App.vue b/ui/web/src/App.vue index 7d52542f..1a0b1d64 100644 --- a/ui/web/src/App.vue +++ b/ui/web/src/App.vue @@ -38,7 +38,7 @@ import Container from '@/components/Container.vue' margin-right: 0.2%; margin-left: 0.2%; padding: 0.4%; - border: solid black; + border: solid 0.25px black; } body { diff --git a/ui/web/src/components/charging-stations/CSTable.vue b/ui/web/src/components/charging-stations/CSTable.vue index fc1f6a5c..3175d650 100644 --- a/ui/web/src/components/charging-stations/CSTable.vue +++ b/ui/web/src/components/charging-stations/CSTable.vue @@ -48,6 +48,7 @@ const $emit = defineEmits(['need-refresh']) display: flex; flex-direction: column; overflow: auto hidden; + border: solid 0.25px black; border-collapse: collapse; empty-cells: show; } -- 2.34.1