From a0815c182c15ca3bb50e8ca85cfcf65ad2131903 Mon Sep 17 00:00:00 2001 From: Brian Wylie Date: Wed, 11 Dec 2024 13:33:32 -0700 Subject: [PATCH] border tweak --- applications/aws_dashboard/app.py | 2 +- src/sageworks/themes/light/custom.css | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/applications/aws_dashboard/app.py b/applications/aws_dashboard/app.py index adcb18d14..d3fbcdd00 100644 --- a/applications/aws_dashboard/app.py +++ b/applications/aws_dashboard/app.py @@ -14,7 +14,7 @@ # Set up the Theme Manager tm = ThemeManager() -tm.set_theme("quartz_dark") +tm.set_theme("dark") css_files = tm.css_files() print(css_files) diff --git a/src/sageworks/themes/light/custom.css b/src/sageworks/themes/light/custom.css index 0babbd862..60117c149 100644 --- a/src/sageworks/themes/light/custom.css +++ b/src/sageworks/themes/light/custom.css @@ -44,7 +44,7 @@ b, strong { [class*="ag-theme-"] { box-shadow: 4px 6px 5px rgba(0, 0, 0, 0.3); /* Drop shadow */ border-radius: 12px; /* Rounded corners */ - border: 0.5px solid rgba(0, 0, 0, 0.5); + border: 0.5px solid rgba(0, 0, 205, 0.5); margin: 0; padding: 0; } @@ -53,7 +53,7 @@ b, strong { .plotly { box-shadow: 4px 6px 5px rgba(0, 0, 0, 0.3); /* Drop shadow */ border-radius: 12px; /* Rounded corners */ - border: 0.5px solid rgba(0, 0, 0, 0.5); + border: 0.5px solid rgba(0, 0, 205, 0.5); margin: 30px; /* Space around the figure */ padding: 30px; /* Inner padding */ overflow: hidden; /* Ensure contents fit inside the rounded corners */