From 2945869ad8ea6c1fedd87e6ff9c2152ee9c59571 Mon Sep 17 00:00:00 2001
From: Giorgio Garofalo <giogar2705@gmail.com>
Date: Sat, 10 Aug 2024 16:46:03 +0200
Subject: [PATCH] Fix layout value in darko theme

---
 core/src/main/resources/render/theme/color/darko.css    | 2 --
 core/src/main/resources/render/theme/layout/minimal.css | 2 ++
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/core/src/main/resources/render/theme/color/darko.css b/core/src/main/resources/render/theme/color/darko.css
index 9432fe4d..18729def 100644
--- a/core/src/main/resources/render/theme/color/darko.css
+++ b/core/src/main/resources/render/theme/color/darko.css
@@ -11,8 +11,6 @@ h1, h2, h3, h4, h5, h6 {
 }
 
 .box {
-    margin-top: 32px;
-    margin-bottom: 32px;
     background-color: var(--primary);
 }
 
diff --git a/core/src/main/resources/render/theme/layout/minimal.css b/core/src/main/resources/render/theme/layout/minimal.css
index aed0369b..869268c7 100644
--- a/core/src/main/resources/render/theme/layout/minimal.css
+++ b/core/src/main/resources/render/theme/layout/minimal.css
@@ -72,6 +72,8 @@ table tr th:last-child {
 .box {
     width: 100%;
     border-radius: 8px;
+    margin-top: 32px;
+    margin-bottom: 32px;
 }
 
 .box > header {