How can i use scss-imports and -mixins with the createCSS function?
-
How can i import external scss-files with the createCSS function?
and
How can i create scss-mixins with the createCSS function?
This don’t work:$titan->createCSS( " @mixin border-radius($radius) { -webkit-border-radius: $radius; -moz-border-radius: $radius; -ms-border-radius: $radius; border-radius: $radius; } .box { @include border-radius(10px); } " );
Thanks!
- The topic ‘How can i use scss-imports and -mixins with the createCSS function?’ is closed to new replies.