From 4ff9d217839aba20a654f6774beb84a2133b9c8b Mon Sep 17 00:00:00 2001 From: tinkle-community Date: Fri, 26 Dec 2025 02:14:07 +0800 Subject: [PATCH] fix: increase watermark visibility - Increase color opacity to 0.15 - Add overall opacity 0.6 for better visibility - Enhance text shadow effect - Adjust z-index to 1 --- web/src/components/AdvancedChart.tsx | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/web/src/components/AdvancedChart.tsx b/web/src/components/AdvancedChart.tsx index ab344a65..653c70f8 100644 --- a/web/src/components/AdvancedChart.tsx +++ b/web/src/components/AdvancedChart.tsx @@ -709,20 +709,18 @@ export function AdvancedChart({ transform: 'translate(-50%, -50%)', pointerEvents: 'none', userSelect: 'none', - zIndex: 0, + zIndex: 1, }} >
NOFX