diff --git a/apps/desktop/src/components/layout/AppTabBar.vue b/apps/desktop/src/components/layout/AppTabBar.vue index eca3edff0..9b378b9b5 100644 --- a/apps/desktop/src/components/layout/AppTabBar.vue +++ b/apps/desktop/src/components/layout/AppTabBar.vue @@ -176,7 +176,7 @@ function tabColorStyle(tab: QueryTab) { const isClassic = settingsStore.editorSettings.appLayout === "classic"; if (!color) { if (isClassic) { - return isActive ? { boxShadow: "0 1px 0 0 var(--color-background)" } : undefined; + return isActive ? { boxShadow: "inset 0 -2px 0 var(--ring)" } : undefined; } return isActive ? { diff --git a/apps/desktop/src/components/layout/SqlLibraryPanel.vue b/apps/desktop/src/components/layout/SqlLibraryPanel.vue index 58bb7c816..22efbae43 100644 --- a/apps/desktop/src/components/layout/SqlLibraryPanel.vue +++ b/apps/desktop/src/components/layout/SqlLibraryPanel.vue @@ -798,7 +798,7 @@ function showDropInside(targetId: string) {