Fix incorrect SASS addition (#38194)
This commit is contained in:
@@ -107,7 +107,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
$button-breakpoint: 420px;
|
$button-breakpoint: 420px;
|
||||||
$button-fallback-breakpoint: #{$button-breakpoint} + 55px;
|
$button-fallback-breakpoint: $button-breakpoint + 55px;
|
||||||
|
|
||||||
.buttonsDesktop {
|
.buttonsDesktop {
|
||||||
@container (width < #{$button-breakpoint}) {
|
@container (width < #{$button-breakpoint}) {
|
||||||
@@ -132,7 +132,7 @@ $button-fallback-breakpoint: #{$button-breakpoint} + 55px;
|
|||||||
}
|
}
|
||||||
|
|
||||||
@supports (not (container-type: inline-size)) {
|
@supports (not (container-type: inline-size)) {
|
||||||
@media (min-width: (#{$button-fallback-breakpoint} + 1px)) {
|
@media (min-width: ($button-fallback-breakpoint + 1px)) {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8478,7 +8478,7 @@ noscript {
|
|||||||
gap: 8px;
|
gap: 8px;
|
||||||
|
|
||||||
$button-breakpoint: 420px;
|
$button-breakpoint: 420px;
|
||||||
$button-fallback-breakpoint: #{$button-breakpoint} + 55px;
|
$button-fallback-breakpoint: $button-breakpoint + 55px;
|
||||||
|
|
||||||
&--desktop {
|
&--desktop {
|
||||||
margin-top: 55px;
|
margin-top: 55px;
|
||||||
@@ -8502,7 +8502,7 @@ noscript {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@supports (not (container-type: inline-size)) {
|
@supports (not (container-type: inline-size)) {
|
||||||
@media (min-width: (#{$button-fallback-breakpoint} + 1px)) {
|
@media (min-width: ($button-fallback-breakpoint + 1px)) {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user