In SASS (or SCSS) negating a variable doesn't seem to work they I would
expect:
$page-width: 2px
#content
margin: 0 2 0 -$page-width
yields:
#content { margin: 0 2 -2px; }
I would expect it to be:
#content { margin: 0 2 0 -2px; }
I can only achieve this by:
$page-width: 2px
#content
margin: 0 2 0 (-$page-width)
Is this expected or a bug?
--
You received this message because you are subscribed to the Google Groups
"Haml" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to [email protected].
For more options, visit this group at http://groups.google.com/group/haml?hl=en.