From 9ee672f1e76206a4dd70520611828a9e60ffcc57 Mon Sep 17 00:00:00 2001 From: Yohan Boniface Date: Mon, 15 Apr 2024 19:35:36 +0200 Subject: [PATCH] wip: fix border for dark panel --- umap/static/umap/css/panel.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/umap/static/umap/css/panel.css b/umap/static/umap/css/panel.css index 3ecabbd2..73e82500 100644 --- a/umap/static/umap/css/panel.css +++ b/umap/static/umap/css/panel.css @@ -13,7 +13,7 @@ border: 1px solid var(--color-lightGray); } .panel.dark { - border-left: 1px solid #222; + border: 1px solid #222; background-color: var(--color-darkGray); color: #efefef; }