1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-24 08:12:24 +02:00

Mobile: Fixed notebook icons alignment

This commit is contained in:
Laurent Cozic 2022-10-24 15:22:22 +01:00
parent 5d31c087b0
commit ea6b7caaf3

View File

@ -93,7 +93,7 @@ const SideMenuContentComponent = (props: Props) => {
styles.sideButtonSelected = Object.assign({}, styles.sideButton, { backgroundColor: theme.selectedColor });
styles.sideButtonText = Object.assign({}, styles.buttonText);
styles.emptyFolderIcon = { ...styles.sidebarIcon, marginRight: folderIconRightMargin };
styles.emptyFolderIcon = { ...styles.sidebarIcon, marginRight: folderIconRightMargin, width: 20 };
return StyleSheet.create(styles);
}, [props.themeId]);
@ -289,7 +289,7 @@ const SideMenuContentComponent = (props: Props) => {
}
if (folderIcon.type === 1) { // FolderIconType.Emoji
return <Text style={{ fontSize: theme.fontSize, marginRight: folderIconRightMargin }}>{folderIcon.emoji}</Text>;
return <Text style={{ fontSize: theme.fontSize, marginRight: folderIconRightMargin, width: 20 }}>{folderIcon.emoji}</Text>;
} else if (folderIcon.type === 2) { // FolderIconType.DataUrl
return <Image style={{ width: 20, height: 20, marginRight: folderIconRightMargin, resizeMode: 'contain' }} source={{ uri: folderIcon.dataUrl }}/>;
} else {