We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c109532 commit 90714baCopy full SHA for 90714ba
packages/components/gulpfile.js
@@ -360,7 +360,8 @@ const buildStyles = (prod) => {
360
.pipe(
361
postcss([
362
autoprefixer({
363
- browsers: ['> 1%', 'last 2 versions'],
+ browsers: ['> 1%', 'last 2 versions', 'ie >= 11'],
364
+ grid: 'autoplace',
365
}),
366
])
367
)
@@ -417,7 +418,15 @@ gulp.task('sass:dev', () => {
417
418
})
419
).on('error', sass.logError)
420
- .pipe(postcss([customProperties(), autoprefixer()]))
421
+ .pipe(
422
+ postcss([
423
+ customProperties(),
424
+ autoprefixer({
425
426
427
+ }),
428
+ ])
429
+ )
430
.pipe(sourcemaps.write('.'))
431
.pipe(gulp.dest('demo'))
432
.pipe(browserSync.stream({ match: '**/*.css' }));
0 commit comments