我.scss
在我的 Rails 应用程序中使用文件,之前我使用的是:
@import "bootswatch/superhero/variables";
@import "bootswatch/superhero/bootswatch";
但我想做类似的事情:
$theme: 'superhero';
@import "bootswatch/#{$theme}/variables";
@import "bootswatch/#{$theme}/bootswatch";
不幸的是,这不起作用,变量没有被嵌入。当我想更改主题时,我该如何做才能避免application.css.scss
多次更改?
其他没有成功的尝试
@import "bootswatch/" + $theme + "/variables";
$theme_variables: "/bootswatch/#{$theme}/variables";
@import $theme_variables;