I know that the generated stylesheet can be linked with media="screen"
or media="print", but is there also a way to include media
specification inside the sass file? I tried the following:

@media print
  p
    :font-size smaller

but sass produces:

@media print p {
  font-size: smaller;
}

when what I would want is:

@media print {

p { font-size: smaller; }

}


--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to