[Glitch] Fix incorrect SASS addition

Port 91407ecc15 to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
This commit is contained in:
Echo
2026-03-13 15:21:39 +01:00
committed by Claire
parent 8ec882df0c
commit a78119d8d3
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

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