The roughly margin-block-start: -1px; rule in the following line:
|
margin-block-start: calc(var(--spectrum-slider-track-height) / -2); |
Is overridden as margin-block-start: 0; in the following line:
https://github.com/adobe/spectrum-css/blob/main/components/slider/index.css#L180
Naively, the following would appear to cure this situation:
margin-block: calc(var(--spectrum-slider-track-height) / -2) var(--spectrum-slider-range-track-reset);
I'd be happy to submit a PR if this seemed appropriate.