1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-30 10:36:35 +02:00

Mobile: Resolves #9819: Allow note viewer to extend to the edge of the screen while pinch zooming (#9820)

This commit is contained in:
Henry Heino 2024-02-02 10:10:27 -08:00 committed by GitHub
parent a0f003f9d5
commit e83306c1f7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 2 deletions

View File

@ -231,6 +231,11 @@ export default function useSource(
white-space: pre-wrap;
overflow-x: hidden;
}
body {
padding-left: ${Number(theme.marginLeft)}px;
padding-right: ${Number(theme.marginRight)}px;
}
`;
html =

View File

@ -478,8 +478,6 @@ class NoteScreenComponent extends BaseScreenComponent<Props, State> implements B
},
noteBodyViewer: {
flex: 1,
paddingLeft: theme.marginLeft,
paddingRight: theme.marginRight,
},
checkbox: {
color: theme.color,