I was wondering if there is a way to make a mixin globally accessible in sass. Below is a github link. I am using SMACSS standards for file structure.
https://github.com/sfp-justin/framework
If you look in resources/assets/scss/utilities/_mixins.scss
you will see my mixins thus far. I import them into a master index file. app.scss
has all of my main imports. I know I could just move the import for utilities
to the top of the list and I would be able to gain access to that mixin, but I don't wanna depend on these items being in a specific order if possible. If you look in resources/assets/scss/layout/grid/_cell.scss
you can see an import.
So is there a way to do the above, or you can point me in the right direction it would be appreciated.