From 81cc1f314522cd239179e57af8d154da62b8cca3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20D=C3=A9ramond?= Date: Sun, 13 Sep 2026 09:41:07 +0200 Subject: [PATCH] Wire --spacer to $spacer in root tokens $root-tokens hardcoded --spacer: 1rem instead of interpolating $spacer. Every --spacer-N token derives from $spacer through the $spacers map, so overriding $spacer moved the scale but left the base token stuck at 1rem. Other tokens in the same map already interpolate their Sass variable (e.g. --border-width), so this brings --spacer in line with that convention. Co-Authored-By: Claude Sonnet 5 --- scss/_root.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scss/_root.scss b/scss/_root.scss index 7e90de6e60b5..f1060f13e75c 100644 --- a/scss/_root.scss +++ b/scss/_root.scss @@ -61,7 +61,7 @@ $root-tokens: defaults( --transition-timing-overlay: cubic-bezier(.22, 1, .36, 1), // scss-docs-end root-transition-variables - --spacer: 1rem, + --spacer: #{$spacer}, // scss-docs-start root-focus-variables --focus-ring-width: 3px,