Skip to content

Commit 06f4dfb

Browse files
committed
Added CSS style 'list-style-type' set to 'none' to hide the list item bullet points, as bullet points don't look good with checkboxes.
1 parent 63f3ba8 commit 06f4dfb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webpack_in/entry.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ class ListWidget extends React.Component {
118118
return (
119119
<div style={ objStyleCommon }>
120120
<div style={ objStyleContent }>
121-
<ul style={{ display: 'inline-block', textAlign: 'left' }}>
121+
<ul style={{ display: 'inline-block', textAlign: 'left', listStyleType: 'none' }}>
122122
{ this.state.items.map((objItem, index) => (<ListItem key={ objItem.id }
123123
caption={ objItem.caption }
124124
/>)) }

0 commit comments

Comments
 (0)