Skip to content

Commit bebcb07

Browse files
committed
Aligned the list items to the left so that there is an equal gap from bullet point to item description for all items regardless of their length.
1 parent 74cf9b3 commit bebcb07

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

webpack_in/entry.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ class ListWidget extends React.Component {
9191
return (
9292
<div style={ objStyleCommon }>
9393
<div style={ objStyleContent }>
94-
<ul style={{ display: 'inline-block' }}>
94+
<ul style={{ display: 'inline-block', textAlign: 'left' }}>
9595
{ this.state.items.map((strItem, index) => (<li key={ index }>
9696
{ strItem }
9797
</li>)) }

0 commit comments

Comments
 (0)