mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-12 12:28:42 +00:00
55 lines
1.3 KiB
HTML
55 lines
1.3 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/logo.svg" />
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=Kalam&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
<title>BlockSuite Playground</title>
|
|
<style>
|
|
html,
|
|
body {
|
|
height: 100%;
|
|
overflow: hidden;
|
|
margin: 0;
|
|
padding: 0;
|
|
background-color: var(--affine-white-90);
|
|
transition: background-color 0.3s;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
doc-title {
|
|
margin-top: 78px;
|
|
}
|
|
|
|
@media print {
|
|
doc-title {
|
|
margin-top: 0px;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<script type="module" src="./apps/default/main.ts"></script>
|
|
<div
|
|
id="app"
|
|
style="margin: 0; overflow: initial; height: 100%; box-shadow: initial"
|
|
>
|
|
<div id="inspector"></div>
|
|
</div>
|
|
</body>
|
|
</html>
|