From 75b58d0423d57b667be4bd2992e8a4ebc176f380 Mon Sep 17 00:00:00 2001 From: aits2026 Date: Fri, 6 Mar 2026 11:37:04 +0800 Subject: [PATCH] fix(export): tighten sticky action divider --- src/pages/ExportPage.scss | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/pages/ExportPage.scss b/src/pages/ExportPage.scss index 28d4adc..f97d7c4 100644 --- a/src/pages/ExportPage.scss +++ b/src/pages/ExportPage.scss @@ -1355,17 +1355,17 @@ position: sticky; right: 0; z-index: 8; - background: color-mix(in srgb, var(--bg-primary) 78%, var(--bg-secondary)); + background: var(--bg-primary); &::before { content: ''; position: absolute; top: 0; bottom: 0; - left: -18px; - width: 18px; + left: -8px; + width: 8px; pointer-events: none; - background: linear-gradient(to right, transparent, color-mix(in srgb, var(--bg-primary) 82%, var(--bg-secondary))); + background: linear-gradient(to right, transparent, var(--bg-primary)); } } @@ -1819,17 +1819,17 @@ position: sticky; right: 0; z-index: 6; - background: inherit; + background: var(--bg-primary); &::before { content: ''; position: absolute; top: -12px; bottom: -12px; - left: -18px; - width: 18px; + left: -8px; + width: 8px; pointer-events: none; - background: linear-gradient(to right, transparent, color-mix(in srgb, var(--bg-primary) 84%, var(--bg-secondary))); + background: linear-gradient(to right, transparent, var(--bg-primary)); } .row-action-main {