consolidate all views

This commit is contained in:
2021-11-22 01:36:18 +01:00
parent 2d8b259f32
commit 743890e490
15 changed files with 166 additions and 284 deletions

View File

@@ -1,22 +0,0 @@
<script>
// import manifest from '../../'
</script>
<style>
footer {
margin-top: 3rem;
text-align: center;
font-family: monospace;
}
</style>
<footer>
<a
href="https://github.com/cupcakearmy/ora"
target="_blank"
rel="noreferrer">Source Code</a>
- v0.7
<br />
Made with ❤️ by
<a href="https://nicco.io" target="_blank" rel="noreferrer">🐘</a>
</footer>

View File

@@ -1,28 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<link href="../../node_modules/spectre.css/dist/spectre.min.css" rel="stylesheet" />
<link href="../../node_modules/tailwindcss/dist/tailwind.min.css" rel="stylesheet" />
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans',
'Helvetica Neue', sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-rendering: optimizeLegibility;
text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
}
#root {
width: 100vw;
height: 100vh;
}
</style>
<title>Ora</title>
</head>
<body>
<div id="root" />
<script src="./main.js"></script>
</body>
</html>

View File

@@ -1,3 +0,0 @@
import App from './App.svelte'
new App({ target: window.document.getElementById('root') })