style(qr): synchronize gradient handle and line styles with CSS variables

This commit is contained in:
2026-03-04 03:35:29 +00:00
parent 52024ad7c6
commit bec6a0ec8f

View File

@@ -498,8 +498,8 @@ const triggerDownload = (blob, filename) => {
cursor: grab;
z-index: 10;
touch-action: none;
background: #000;
box-shadow: 0 0 0 1.5px rgba(255, 255, 255, 1), 0 0 8px 2px rgba(255, 255, 255, 0.8);
background: rgba(0, 0, 0, 0.5);
box-shadow: 0 0 3px 1px rgba(255, 255, 255, 0.9);
}
.grad-handle:active {
@@ -510,8 +510,8 @@ const triggerDownload = (blob, filename) => {
.bg-handle { }
.fg-line, .bg-line {
stroke: #000;
stroke-width: 0.5;
stroke: rgba(0, 0, 0, 0.5);
stroke-width: 1;
filter: drop-shadow(0px 0px 2px rgba(255,255,255,0.9));
}