How can I Include .scss file in another .scss file? I was trying to write this in a file: app.scss:
.scss
@include(\'buttons\'); @include
You can include a partial by doing this:
@import "partial";
The imported file needs an underscore, so sass will recognize it to be included: _partial.scss