who the hell puts a } in front of a SASS line?

This commit is contained in:
Jeff Atwood 2014-12-25 01:14:20 -08:00
parent b91f9f4142
commit a82fda0a50
2 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@
//fade in
}@keyframes fade {
@keyframes fade {
from {opacity: 0}
to {opacity: .8}
}

View File

@ -31,7 +31,7 @@ animation: modal .25s;
//fade in and animate up
}@keyframes fade {
@keyframes fade {
from {opacity: 0}
to {opacity: 1}
}