From aa05bba04684f76c775c0d83733a4794ad1159e6 Mon Sep 17 00:00:00 2001 From: Lukas <lukas.budginas@gmail.com> Date: Thu, 27 Mar 2025 17:08:44 +0200 Subject: [PATCH] Add custom style for chart card --- styles/theme.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/styles/theme.css b/styles/theme.css index f019e4f7..3041b9af 100644 --- a/styles/theme.css +++ b/styles/theme.css @@ -338,6 +338,19 @@ pre { flex-direction: column; /* Stack elements vertically */ } +.data-box-chart { + background-color: var(--color-extra-light-gray); + border-radius: 12px; + padding: 10px; + margin: 6px 0; + box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); + color: var(--color-text); + font-size: 14px; + border: 1px solid var(--color-light-gray); + transition: all 0.3s ease-in-out; + flex-direction: column; +} + .data-box:hover { background-color: var(--color-row-hover); box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15); /* Elevated shadow */ -- GitLab