feat(css): use postcss-preset-env (#2313)

* Use postcss-preset-env

Closes #1946.

* Remove CSS prefixes

They are added by autoprefixer, if necessary.
This commit is contained in:
ylemkimon
2020-08-03 13:19:09 +09:00
committed by GitHub
parent 4a6f776941
commit 591bc7b4be
5 changed files with 373 additions and 17 deletions

View File

@@ -219,17 +219,13 @@
}
.vbox {
display: -ms-inline-flexbox;
display: inline-flex;
-ms-flex-direction: column;
flex-direction: column;
align-items: baseline;
}
.hbox {
display: -ms-inline-flexbox;
display: inline-flex;
-ms-flex-direction: row;
flex-direction: row;
width: 100%;
}