We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent1b02e5d commit5e75578Copy full SHA for 5e75578
stories/grid.stories.js
@@ -29,19 +29,19 @@ storiesOf('Grid', module)
29
})).add('Offset',()=>({
30
template:`
31
<ca-layout wrap>
32
- <ca-flex col="xs10" offset="xs1">
+ <ca-flex col="xs10 sm10 md10 lg10 xl10" offset="xs1 sm1 md1 lg1 xl1">
33
<ca-tile style="background: #1867c0"/>
34
</ca-flex>
35
36
- <ca-flex col="xs6" offset="xs4">
+ <ca-flex col="xs6 sm6 md6 lg6 xl6" offset="xs4 sm4 md4 lg4 xl4">
37
<ca-tile style="background: #5cbbf6"/>
38
39
40
- <ca-flex col="xs4" offset="xs2">
+ <ca-flex col="xs4 sm4 md4 lg4 xl4" offset="xs2 sm2 md2 lg2 xl2">
41
42
43
44
- <ca-flex col="xs3" offset="xs3">
+ <ca-flex col="xs3 sm3 md3 lg3 xl3" offset="xs3 sm3 md3 lg3 xl3">
45
<ca-tile style="background: #4caf50"/>
46
47