File tree Expand file tree Collapse file tree 3 files changed +37
-5
lines changed Expand file tree Collapse file tree 3 files changed +37
-5
lines changed Original file line number Diff line number Diff line change @@ -26,10 +26,10 @@ const align = {
2626 content_stretch : {
2727 alignContent : 'stretch' ,
2828 } ,
29- content_space_between : {
29+ content_between : {
3030 alignContent : 'space-between' ,
3131 } ,
32- content_space_around : {
32+ content_around : {
3333 alignContent : 'space-around' ,
3434 } ,
3535 self_auto : {
Original file line number Diff line number Diff line change @@ -8,13 +8,13 @@ const justify = {
88 content_end : {
99 justifyContent : 'flex-end' ,
1010 } ,
11- content_space_between : {
11+ content_between : {
1212 justifyContent : 'space-between' ,
1313 } ,
14- content_space_around : {
14+ content_around : {
1515 justifyContent : 'space-around' ,
1616 } ,
17- content_space_evenly : {
17+ content_evenly : {
1818 justifyContent : 'space-evenly' ,
1919 } ,
2020} ;
Original file line number Diff line number Diff line change 1+ const place = {
2+ items_center : {
3+ alignItems : 'center' ,
4+ justifyContent : 'center' ,
5+ } ,
6+ items_stretch : {
7+ alignItems : 'stretch' ,
8+ justifyContent : 'stretch' ,
9+ } ,
10+ items_start : {
11+ alignItems : 'flex-start' ,
12+ justifyContent : 'flex-start' ,
13+ } ,
14+ items_end : {
15+ alignItems : 'flex-end' ,
16+ justifyContent : 'flex-end' ,
17+ } ,
18+ items_between : {
19+ alignItems : 'center' ,
20+ justifyContent : 'space-between' ,
21+ } ,
22+ items_around : {
23+ alignItems : 'center' ,
24+ justifyContent : 'space-around' ,
25+ } ,
26+ items_evenly : {
27+ alignItems : 'center' ,
28+ justifyContent : 'space-evenly' ,
29+ } ,
30+ } ;
31+
32+ export default place ;
You can’t perform that action at this time.
0 commit comments