Skip to content

Commit dac768d

Browse files
committed
update docs
1 parent aa8ee64 commit dac768d

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.MD

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,22 @@ Flex Attributes
22
=============
33

44
This library allows you to compose layout with flexbox in html. Containers
5-
are composed by combining `fa-column`|`fa-row` with `fa-layout`.
5+
are composed by combining `flex-column`|`flex-row` with `flex-flow`.
66

7-
`fa-column` or `fa-row` sets the element to be a flex container and sets the direction, `fa-layout` defines how children align on the main, and secondary axis.
7+
`flex-column` or `flex-row` sets the element to be a flex container and sets the direction, `flex-flow` defines how children align on the main, and secondary axis.
88
```
9-
fa-column="reverse nowrap" fa-layout="space-between baseline"
9+
flex-column="reverse nowrap" flex-flow="space-between baseline"
1010
```
1111

12-
`fa-row` and `fa-column` can be shorthanded and default to the flexbox defaults
12+
`flex-row` and `flex-column` can be shorthanded and default to the flexbox defaults
1313

1414
```
15-
fa-row fa-layout="start baseline"
15+
flex-row flex-flow="start baseline"
1616
```
1717

18-
`fa-layout` can be shorthanded to just the main axis
18+
`flex-flow` can be shorthanded to just the main axis
1919
```
20-
fa-row fa-layout="space-between"
20+
flex-row flex-flow="space-between"
2121
```
2222

2323
Installation
@@ -28,4 +28,4 @@ npm install flex-attributes
2828
bower install flex-attributes
2929
```
3030

31-
Add or import `flex-attributes/dist/flex-attributes.css` into your index or compiled css build process
31+
Add, import, or require `flex-attributes/dist/flex-attributes.css` into your project.

0 commit comments

Comments
 (0)