I can't seem to import this bootstrap theme to my rails application.
https://github.com/puikinsh/sufee-admin-dashboard
I am trying to import this template for two days but no luck. It could be easy, but I don´t know what I´m doing wrong :(
I receive this error:
Undefined variable: "$border-color".
Undefined mixin ....
So I have got a problem with variables and mixins at the first time. I tried another template and it works, so I really don´t know what to try next.
Any hint or idea about how to solve this problem would be really appreciated.
Thanks
Porting a template into your Rails application is not hard if you break it down into several imprortant steps:
application.sass
. The Undefined variable: "$border-color".
points you towards missing variables.scss, which contains all the color variables for your template.pagedown.coffee.erb
along with third-party modules. Be sure to keep non third-party code below other modules to preserve functionality of code that relies on those modules.There can be a lot of problems, but in general, just try to analyze the errors being thrown and solve them one by one.