From 3dc3103d79e63e552f765d9ba460c0f68057a0ec Mon Sep 17 00:00:00 2001
From: thijsheijden <hi@thijsheijden.nl>
Date: Sat, 5 Feb 2022 13:59:55 +0100
Subject: [PATCH] fix: panel content full width

---
 apps/graphpolaris/src/web/components/panels/Panel.tsx | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/apps/graphpolaris/src/web/components/panels/Panel.tsx b/apps/graphpolaris/src/web/components/panels/Panel.tsx
index 7dbc0d617..bf43cca74 100644
--- a/apps/graphpolaris/src/web/components/panels/Panel.tsx
+++ b/apps/graphpolaris/src/web/components/panels/Panel.tsx
@@ -20,10 +20,10 @@ const Wrapper = styled.div<{ color: string }>`
 `;
 
 const Content = styled.div`
-  margin: 1em;
-  padding: 1em;
-  background-color: white;
+  margin: 2em;
   border-radius: 8px;
+  width: 100%;
+  height: 100%;
 `;
 
 const Panel = (props: Props) => {
-- 
GitLab