Merge pull request #8039 from Ocelot-Social-Community/sass-math-fix

fix(other): revert a change, which accedentally was merged
This commit is contained in:
mahula 2024-10-28 20:02:19 +01:00 committed by GitHub
commit 2c4300c7e6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -39,7 +39,7 @@ export default {
$offset: $size * -0.2;
&.hc-badges-dual {
padding-top: $size / 2 - 2;
padding-top: math.div($size, 2) - 2;
}
.hc-badge-container {
@ -59,10 +59,10 @@ export default {
margin-left: -6px;
}
&:first-child {
margin-left: -$size / 3;
margin-left: math.div(-$size, 3);
}
&:last-child {
margin-right: -$size / 3;
margin-right: math.div(-$size, 3);
}
}
}