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 7cd5c0b commit e6a7ff8Copy full SHA for e6a7ff8
packages/react-scripts/template/README.md
@@ -511,12 +511,16 @@ becomes this:
511
512
```css
513
.App {
514
+ display: -webkit-box;
515
display: -ms-flexbox;
516
display: flex;
- -ms-flex-direction: row;
517
- flex-direction: row;
518
- -ms-flex-align: center;
519
- align-items: center;
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: row;
520
+ flex-direction: row;
521
+ -webkit-box-align: center;
522
+ -ms-flex-align: center;
523
+ align-items: center;
524
}
525
```
526
0 commit comments