I am getting Mixin flexbox doesn't have an argument named $version
in the following code. I have Compass 1.0.1 installed.
@import "compass/css3/flexbox";
@mixin all-spec-display-flex() {
@include flexbox((display: box, flex-direction: row), $version: 1);
@include flexbox((display: flexbox, flex-direction: row), $version: 2);
@include flexbox((display: box, flex-direction: row));
}
I opened the _flexbox.scss file in Compass and I do see the $version
param there.