We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 590a59e commit d20954eCopy full SHA for d20954e
_sass/minimal-mistakes/_utilities.scss
@@ -186,7 +186,9 @@ body:hover .visually-hidden button {
186
187
.full {
188
@include breakpoint($large) {
189
- margin-right: -1 * span(2.5 of 12) !important;
+ // `span()` returns a `calc()` expression which cannot be multiplied.
190
+ // Passing a negative value directly avoids the undefined operation error.
191
+ margin-right: span(-2.5 of 12) !important;
192
}
193
194
0 commit comments