From 23e72cec48a589b0adbd3a64f28ad442411b6f99 Mon Sep 17 00:00:00 2001 From: Elizabeth Thompson Date: Thu, 18 Sep 2025 14:59:39 -0700 Subject: [PATCH] fix(dashboard): update header border to use colorBorder token MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changed border-bottom color from colorSplit to colorBorder for better theme consistency. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- superset-frontend/src/dashboard/components/Header/index.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/superset-frontend/src/dashboard/components/Header/index.jsx b/superset-frontend/src/dashboard/components/Header/index.jsx index 3d4afa39dd93..1a4f3b43bf1a 100644 --- a/superset-frontend/src/dashboard/components/Header/index.jsx +++ b/superset-frontend/src/dashboard/components/Header/index.jsx @@ -100,7 +100,7 @@ import { useHeaderActionsMenu } from './useHeaderActionsDropdownMenu'; const extensionsRegistry = getExtensionsRegistry(); const headerContainerStyle = theme => css` - border-bottom: 1px solid ${theme.colorSplit}; + border-bottom: 1px solid ${theme.colorBorder}; `; const editButtonStyle = theme => css`