mirror of
https://github.com/heyman/heynote.git
synced 2024-11-21 23:43:22 +01:00
51e89ad55c
Use 1px border for line between blocks. This way we can make sure blocks always overlap slightly, and we don't have to care about fractional pixel rounding errors.
25 lines
728 B
HTML
25 lines
728 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-inline';" />
|
|
<title>heynote</title>
|
|
<link rel="stylesheet" href="src/editor/styles.css" />
|
|
</head>
|
|
<body>
|
|
|
|
|
|
<!--<div id="app"></div>-->
|
|
<!--<script type="module" src="/src/main.ts"></script>-->
|
|
|
|
<!--<div id="app"></div>
|
|
<script type="module" src="src/main.js"></script>-->
|
|
|
|
<div id="editor" class="editor"></div>
|
|
<script type="module" src="src/editor/index.js"></script>
|
|
</body>
|
|
</html>
|
|
|