You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Useful, Modern and universal layout Components for [React.js](https://facebook.github.io/react/) based on flexbox.<br>
6
6
7
7
The basis `<Box>` Component is highly inspired by [React Native](https://facebook.github.io/react-native/)'s [Flexbox](https://facebook.github.io/react-native/docs/flexbox.html#content) implementation and though accepts almost the same props.
8
-
It supports all flexbox specifications and automatically adds alternative values and prefixes thanks to [inline-style-prefixer](https://github.com/rofrischmann/inline-style-prefixer) if needed.
8
+
It supports all flexbox specifications and automatically adds alternative values and prefixes thanks to [inline-style-prefix-all](https://github.com/rofrischmann/inline-style-prefix-all) if needed.
9
9
10
10
> **Note**: If you're not familiar with Flexbox at all, I recommend [css-tricks 'Complete Guide to Flexbox'](https://css-tricks.com/snippets/css/a-guide-to-flexbox/) which is an awesome source for beginners as well as a nice refreshment for experts.
11
11
@@ -84,7 +84,7 @@ Browser default values don't need to be set explicit and are defined as
84
84
```
85
85
86
86
## Container
87
-
Container is a Component to style [Box-model](https://css-tricks.com/the-css-box-model/)
87
+
Container is a Component to style [box-model](https://css-tricks.com/the-css-box-model/)
88
88
properties.
89
89
90
90
### Props
@@ -116,14 +116,13 @@ There are some shortcut properties. They do not accept a value. e.g.
116
116
Page is just a shortcut for a page-filling Component. It also is fixed to the edges of your WebView.
117
117
118
118
## ScrollView
119
-
ScrollView is a scrollable container. You **must** set both `height` and `width` to achieve a scrollable container.
120
-
119
+
ScrollView is a scrollable container. It is build on the `<Box>`-Component, which let's you either use default box-model sizing or flexbox sizing.
0 commit comments