curvedmark / roole

A language that compiles to CSS
http://roole.org
MIT License
342 stars 21 forks source link

Import @import with media queries #129

Closed curvedmark closed 11 years ago

curvedmark commented 11 years ago
@import './foo.roo' screen;

->

@media screen {
  // content of ./foo.roo
}
curvedmark commented 11 years ago

Landed in master