AFFiNE/apps/docs/index.html

37 lines
805 B
HTML
Raw Normal View History

2023-07-06 06:49:17 +03:00
<!doctype html>
2023-06-25 16:18:23 +03:00
<html lang="en">
<head>
<meta charset="utf-8" />
<title>AFFiNE Developer Documentation</title>
<style>
@keyframes spinner {
to {
transform: rotate(360deg);
}
}
.spinner {
width: 36px;
height: 36px;
margin: auto;
border: 2px solid #ddd;
border-top-color: #222;
border-radius: 50%;
animation: spinner 1s linear infinite;
}
#root > .spinner {
margin-top: calc(50% - 18px);
}
</style>
</head>
<body>
<!--placeholder1-->
<div id="root">
<div class="spinner"></div>
</div>
<!--/placeholder1-->
2023-06-26 11:59:42 +03:00
<script src="./src/index.tsx" defer type="module"></script>
2023-06-25 16:18:23 +03:00
<!--placeholder2-->
<!--/placeholder2-->
</body>
</html>