Is it possible to override a numeric attribute in SASS by increasing or decreasing? Consider something like this:
h1 {
font-size: 10px;
}
h1.important {
font-size: += 10px;
}
I know I can get around this by specifying a variable. Can this be done without?
source
share