37 lines
845 B
HTML
37 lines
845 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>beaver-calendar preview</title>
|
|
<link rel="stylesheet" href="/app.css" />
|
|
<link rel="stylesheet" href="/theme.css" />
|
|
<link rel="stylesheet" href="/styles.css" />
|
|
<style>
|
|
body.theme-dark,
|
|
body.theme-light {
|
|
--accent-h: 254;
|
|
--accent-s: 80%;
|
|
--accent-l: 68%;
|
|
--font-interface:
|
|
-apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto,
|
|
sans-serif;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
height: 100vh;
|
|
overflow: hidden;
|
|
background: var(--background-primary);
|
|
}
|
|
|
|
#app {
|
|
height: 100vh;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body class="theme-dark">
|
|
<div id="app"></div>
|
|
<script src="/preview/bundle.js"></script>
|
|
</body>
|
|
</html>
|