📜  sass 使用另一个文件中的变量 - CSS 代码示例

📅  最后修改于: 2022-03-11 14:47:46.935000             🧑  作者: Mango

代码示例3
// When importing the master, you leave out the underscore, and it
// will look for a file with the underscore. This prevents the SCSS
// compiler from generating a CSS file from it.
@import "assets/master";

// Then do the rest of my CSS afterwards:
.text { color: $accent; }