Closed zwippie closed 2 years ago
I was having a problem with the file todos_mobile.css stylesheet. No style was rendered to the browser at all, sc-server error was:
todos_mobile.css
Sass::SyntaxError: Undefined mixin 'border-radius'. tmp/chance/home/zwippie/src/todos/tmp/debug/staging/static/todos/en/current/resources/stylesheets/todos_mobile_css.scss:10:in `border-radius'
It turns out that the css3 mixins are required but not loaded. Put this on top of todos_mobile.css to fix the problem.
@import "compass/css3";
thanks. useful to me
hit my problem, thanks
This is a bug, right? Adding @zwippie's line to the top of the css file fixes it for everyone?
I was having a problem with the file
todos_mobile.css
stylesheet. No style was rendered to the browser at all, sc-server error was:It turns out that the css3 mixins are required but not loaded. Put this on top of
todos_mobile.css
to fix the problem.