Skip to content

Commit 24e6315

Browse files
authored
Merge pull request #121 from abirchall/list_wrap
Allow list item contents to wrap.
2 parents b860777 + ab607e1 commit 24e6315

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -177,14 +177,14 @@ And some additional, less used options:
177177
+ Sub-lists are made by indenting 2 spaces:
178178
- Marker character change forces new list start:
179179
* Ac tristique libero volutpat at
180-
+ Facilisis in pretium nisl aliquet
180+
+ Facilisis in pretium nisl aliquet. This is a very long list item that will surely wrap onto the next line.
181181
- Nulla volutpat aliquam velit
182182
+ Very easy!
183183
184184
Ordered
185185
186186
1. Lorem ipsum dolor sit amet
187-
2. Consectetur adipiscing elit
187+
2. Consectetur adipiscing elit. This is a very long list item that will surely wrap onto the next line.
188188
3. Integer molestie lorem at massa
189189
190190
Start numbering with offset:
@@ -608,14 +608,14 @@ Lists
608608
+ Sub-lists are made by indenting 2 spaces:
609609
- Marker character change forces new list start:
610610
* Ac tristique libero volutpat at
611-
+ Facilisis in pretium nisl aliquet
611+
+ Facilisis in pretium nisl aliquet. This is a very long list item that will surely wrap onto the next line.
612612
- Nulla volutpat aliquam velit
613613
+ Very easy!
614614
615615
Ordered
616616
617617
1. Lorem ipsum dolor sit amet
618-
2. Consectetur adipiscing elit
618+
2. Consectetur adipiscing elit. This is a very long list item that will surely wrap onto the next line.
619619
3. Integer molestie lorem at massa
620620
621621
Start numbering with offset:

src/lib/styles.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ export const styles = {
7272
// @pseudo class, does not have a unique render rule
7373
bullet_list_content: {
7474
flex: 1,
75-
flexWrap: 'wrap',
7675
},
7776
// @pseudo class, does not have a unique render rule
7877
ordered_list_icon: {
@@ -82,7 +81,6 @@ export const styles = {
8281
// @pseudo class, does not have a unique render rule
8382
ordered_list_content: {
8483
flex: 1,
85-
flexWrap: 'wrap',
8684
},
8785

8886
// Code

0 commit comments

Comments
 (0)