groqnote_dev / public /index.html
trretretret's picture
fix accident scroll on mobile when touch keyboard popup
be3ad36
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="manifest" href="./manifest.json">
<link rel="stylesheet" href="./libs/toastui-editor.min.css" />
<title>groqnote</title>
<style>
body {
overflow-y: hidden;
font-family: Arial, sans-serif;
background-color: #f4f4f4;
}
</style>
</head>
<body>
<div style="height: 30px;"></div>
<span id="url_div" style="overflow-x: hidden;"></span>
<div id="notebin_editor"></div>
<script src="./index.js" type="module"></script>
<script src="./esltool.js" type="module"></script>
<script src="./libs/toastui-editor-all.min.js"></script>
<script type="module" src="./notebin.js"></script>
</body>
</html>