Need a second set of eyes. We're getting an error trying to use a bootstrap mixin. Oddly, extends of bootstrap classes are working fine. We're using the latest bootstrap-sass
gem.
We're getting the following error:
ActionView::Template::Error (Undefined mixin 'button-variant'.
We have the following structure:
In application.css.scss
@import "bootstrap-sprockets";
@import "bootstrap";
@import "base/variables";
@import "base/mixins";
@import "base/globals";
In globals.css.scss
@import "buttons";
In buttons.css.scss:
.border-btn {
@include button-variant($color-base, transparent, $color-base);
}
Can anyone spot the issue? As far as I can tell, things are setup correctly...