Skip to content

Commit

Permalink
Added CSS style 'list-style-type' set to 'none' to hide the list item…
Browse files Browse the repository at this point in the history
… bullet points, as bullet points don't look good with checkboxes.
  • Loading branch information
maratbn committed Aug 5, 2018
1 parent 63f3ba8 commit 06f4dfb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webpack_in/entry.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ class ListWidget extends React.Component {
return (
<div style={ objStyleCommon }>
<div style={ objStyleContent }>
<ul style={{ display: 'inline-block', textAlign: 'left' }}>
<ul style={{ display: 'inline-block', textAlign: 'left', listStyleType: 'none' }}>
{ this.state.items.map((objItem, index) => (<ListItem key={ objItem.id }
caption={ objItem.caption }
/>)) }
Expand Down

0 comments on commit 06f4dfb

Please sign in to comment.