From e8b713ea0967ccb34f36ef571f6da8926fc4d5c4 Mon Sep 17 00:00:00 2001 From: Lucas Lara Date: Wed, 23 Apr 2025 15:03:59 +0200 Subject: [PATCH] refs #1931 Refactor table styles in ClientDetailsComponent: remove border-radius and box-shadow for a cleaner look --- .../shared/client-details/client-details.component.css | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/ogWebconsole/src/app/components/groups/shared/client-details/client-details.component.css b/ogWebconsole/src/app/components/groups/shared/client-details/client-details.component.css index 8f3de76..902cb8f 100644 --- a/ogWebconsole/src/app/components/groups/shared/client-details/client-details.component.css +++ b/ogWebconsole/src/app/components/groups/shared/client-details/client-details.component.css @@ -64,9 +64,6 @@ .table-container { flex: 1 1 500px; overflow-x: auto; - border-radius: 8px; - background: #fff; - box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05); } .charts-container { @@ -82,6 +79,12 @@ border-radius: 8px; } +table { + border: 2px solid #f3f3f3; + border-radius: 0px !important; + box-shadow: none; +} + .charts-container.single-disk { justify-content: center; }