Skip to content
This repository was archived by the owner on Feb 21, 2020. It is now read-only.

Commit a9da87e

Browse files
authored
Merge pull request #169 from BoostIO/fix-checkbox-icon
Fix checkbox icon
2 parents 49dc076 + fc4375a commit a9da87e

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

app/resource/noteInputSupportIcons/icon-checkbox.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/views/note/inputSupport/NoteInputSupport.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,10 @@ export default class NoteInputSupport extends React.Component {
7171
style={Styles.inputElementsStyle}>
7272
<View>
7373
<SvgUri
74-
width='17'
75-
height='17'
74+
width='20'
75+
height='30'
7676
svgXmlData={checkboxIcon}
77-
style={Styles.supportImage}
77+
style={Styles.checkboxImage}
7878
/>
7979
</View>
8080
</TouchableHighlight>

app/views/note/inputSupport/NoteInputSupportStyles.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,10 @@ export default Styles = {
2424
alignItems: 'center',
2525
justifyContent: 'center',
2626
height: '100%'
27+
},
28+
checkboxImage: {
29+
alignItems: 'center',
30+
justifyContent: 'center',
31+
height: '90%'
2732
}
2833
}

0 commit comments

Comments
 (0)