mirror of https://github.com/laurent22/joplin.git
Mobile: Resolves #9819: Allow note viewer to extend to the edge of the screen while pinch zooming (#9820)
parent
a0f003f9d5
commit
e83306c1f7
|
@ -231,6 +231,11 @@ export default function useSource(
|
||||||
white-space: pre-wrap;
|
white-space: pre-wrap;
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
padding-left: ${Number(theme.marginLeft)}px;
|
||||||
|
padding-right: ${Number(theme.marginRight)}px;
|
||||||
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
html =
|
html =
|
||||||
|
|
|
@ -478,8 +478,6 @@ class NoteScreenComponent extends BaseScreenComponent<Props, State> implements B
|
||||||
},
|
},
|
||||||
noteBodyViewer: {
|
noteBodyViewer: {
|
||||||
flex: 1,
|
flex: 1,
|
||||||
paddingLeft: theme.marginLeft,
|
|
||||||
paddingRight: theme.marginRight,
|
|
||||||
},
|
},
|
||||||
checkbox: {
|
checkbox: {
|
||||||
color: theme.color,
|
color: theme.color,
|
||||||
|
|
Loading…
Reference in New Issue