Fix incorrect SASS addition (#38194)

This commit is contained in:
Echo
2026-03-13 15:21:39 +01:00
committed by GitHub
parent 890b2673fc
commit 91407ecc15
2 changed files with 4 additions and 4 deletions

View File

@@ -107,7 +107,7 @@
}
$button-breakpoint: 420px;
$button-fallback-breakpoint: #{$button-breakpoint} + 55px;
$button-fallback-breakpoint: $button-breakpoint + 55px;
.buttonsDesktop {
@container (width < #{$button-breakpoint}) {
@@ -132,7 +132,7 @@ $button-fallback-breakpoint: #{$button-breakpoint} + 55px;
}
@supports (not (container-type: inline-size)) {
@media (min-width: (#{$button-fallback-breakpoint} + 1px)) {
@media (min-width: ($button-fallback-breakpoint + 1px)) {
display: none;
}
}

View File

@@ -8478,7 +8478,7 @@ noscript {
gap: 8px;
$button-breakpoint: 420px;
$button-fallback-breakpoint: #{$button-breakpoint} + 55px;
$button-fallback-breakpoint: $button-breakpoint + 55px;
&--desktop {
margin-top: 55px;
@@ -8502,7 +8502,7 @@ noscript {
}
@supports (not (container-type: inline-size)) {
@media (min-width: (#{$button-fallback-breakpoint} + 1px)) {
@media (min-width: ($button-fallback-breakpoint + 1px)) {
display: none;
}
}