Include `.scss` file in another `.scss` file?

前端 未结 4 568
花落未央
花落未央 2020-12-16 11:04

How can I Include .scss file in another .scss file? I was trying to write this in a file: app.scss:

@include(\'buttons\');
@include         


        
4条回答
  •  时光说笑
    2020-12-16 11:37

    You can import it like this;

    @import "../../_variables";
    
    @import "../_mixins";
    
    @import "_main";
    
    @import "_login";
    
    @import "_exception";
    
    @import "_utils";
    
    @import "_dashboard";
    
    @import "_landing";
    

    According to your directories and it will do what you want.

提交回复
热议问题