We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
I have webpack in Laravel 6
webpack.mix.js
const mix = require('laravel-mix'); mix.react('resources/js/app.js', 'public/js'); mix.scripts([ 'public/js/app.js', 'resources/js/includes/ral.js', 'resources/js/includes/script.js' ], 'public/js/app.js') .sourceMaps() .version(); mix.sass('resources/sass/app.scss', 'public/css');
Then I have bootstrap, slick-carousel and sass-flex-mixin installed in node_modules folder and I import them in my app.scss
app.scss
@import '~bootstrap/scss/bootstrap'; @import '~slick-carousel/slick/slick'; @import '~slick-carousel/slick/slick-theme'; @import '~sass-flex-mixin/flex'; @import 'variables'; @import 'includes/fontello'; @import 'style';
Then in _style.scss I have
.mystyleinc { @include flexbox; } .mystyleext { @extend %flexbox; }
As I understand from tests.css both styles should be compiled into code below
.flexbox { display: -webkit-box; display: -webkit-flex; display: -moz-flex; display: -ms-flexbox; display: flex; }
But I have different output. For mystyleinc I see only 3 of 5 properties. And mystyleext is absolutely empty.
.mystyleinc { display: -webkit-box; display: -moz-flex; display: flex; }
What is wrong?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have webpack in Laravel 6
webpack.mix.js
Then I have bootstrap, slick-carousel and sass-flex-mixin installed in node_modules folder and I import them in my app.scss
app.scss
Then in _style.scss I have
As I understand from tests.css both styles should be compiled into code below
But I have different output. For mystyleinc I see only 3 of 5 properties. And mystyleext is absolutely empty.
What is wrong?
The text was updated successfully, but these errors were encountered: