mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-13 04:48:53 +00:00
24 lines
581 B
HTML
24 lines
581 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Basic PageEditor Example</title>
|
|
<style>
|
|
html,
|
|
body {
|
|
height: 100%;
|
|
overflow: hidden;
|
|
margin: 0;
|
|
padding: 0;
|
|
background-color: var(--affine-white-90);
|
|
transition: background-color 0.3s;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<script type="module" src="./main.ts"></script>
|
|
</body>
|
|
</html>
|