1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-18 21:09:40 +02:00

fix(wizard): align wizard grid (#5752)

* fix(wizard): align wizard grid [EE-1753]
This commit is contained in:
Chaim Lev-Ari 2021-09-30 05:54:15 +03:00 committed by GitHub
parent 75071dfade
commit 0f33e4ae99
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 491 additions and 417 deletions

View file

@ -3,6 +3,6 @@ module.exports = ({ env }) => ({
// add vendor prefixes
autoprefixer: { browsers: 'last 2 versions' },
// minify the result
cssnano: env === 'production' ? {} : false,
cssnano: env !== 'development' ? {} : false,
},
});