sass pass mixins to imported files code example
Example 1: import mixin from another file
@import "../../../theme/main.scss"
Example 2: Sass @mixin and @include
@mixin important-text {
color: red;
font-size: 25px;
font-weight: bold;
border: 1px solid blue;
}