1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-06-15 23:00:36 +02:00

Mobile: Add padding around beta text editor

This commit is contained in:
Laurent Cozic
2021-10-30 11:51:40 +01:00
parent 6393996694
commit 365e152758
4 changed files with 20 additions and 2 deletions

View File

@ -188,8 +188,8 @@ function useHtml(css: string): string {
${css}
</style>
</head>
<body style="margin:0; height:100vh; width:100vh; width:100vw; min-width:100vw;">
<div class="CodeMirror" style="height:100%;"></div>
<body style="margin:0; height:100vh; width:100vh; width:100vw; min-width:100vw; box-sizing: border-box; padding: 10px;">
<div class="CodeMirror" style="height:100%;" autocapitalize="on"></div>
</body>
</html>
`