1
0
Fork 0
mirror of https://github.com/haml/haml.git synced 2022-11-09 12:33:31 -05:00

[Sass] Fix another reference bug.

Thanks to Will Gray for reporting all of these!
This commit is contained in:
Nathan Weizenbaum 2010-06-17 13:19:11 -07:00
parent 8fa0bf127f
commit 5a82246393

View file

@ -750,7 +750,7 @@ For example:
$translucent-red: rgba(255, 0, 0, 0.5);
p {
color: opacify($translucent-red, 80%);
color: opacify($translucent-red, 0.8);
background-color: transparentize($translucent-red, 50%);
}