As of this posting, March 2018, the only way to use negative custom properties is by multiplying it by -1 with the calc function.
// Vanilla CSS
.class {
margin-bottom: calc(var(--margin-md) * -1);
}
As of this posting, March 2018, the only way to use negative custom properties is by multiplying it by -1 with the calc function.
// Vanilla CSS
.class {
margin-bottom: calc(var(--margin-md) * -1);
}