From d46d11048f5a239caf2c48c236370abae89ff837 Mon Sep 17 00:00:00 2001 From: Binary <929371489@qq.com> Date: Mon, 26 Jan 2026 17:27:09 +0800 Subject: [PATCH] fix --- src/waypoint.ts | 28 +++++++++++++++++++++------- 1 file changed, 21 insertions(+), 7 deletions(-) diff --git a/src/waypoint.ts b/src/waypoint.ts index 463030a..77fdb68 100644 --- a/src/waypoint.ts +++ b/src/waypoint.ts @@ -359,17 +359,31 @@ function generateHighlightedNumberSvgDataUrl(number: number): string { function generateHeightAdjustButtonSvgDataUrl(): string { const svg = ` - - - - - + + + + + + + + + + + + + + + + + + + + + ` - const encoded = encodeURIComponent(svg) .replace(/'/g, '%27') .replace(/"/g, '%22') - return `data:image/svg+xml,${encoded}` }