initial commit

This commit is contained in:
2022-01-13 13:35:07 +01:00
commit 273af813b1
13 changed files with 1361 additions and 0 deletions

27
src/routes/index.svelte Normal file
View File

@@ -0,0 +1,27 @@
<script lang="ts">
// import 'bulma/css/bulma.css'
import Playground from '../components/Playground.svelte'
</script>
<main>
<h1>Svelte Hint</h1>
<p>
Svelte utility library for Tooltips. Heavy lifting of positioning is done by
<a href="https://popper.js.org/">Popper.js</a>.
</p>
<p>
If you are looking for installation and docs please see the
<a href="https://github.com/cupcakearmy/svelte-hint">repository</a>.
</p>
<Playground />
</main>
<style>
main {
margin: auto;
padding: 1rem;
max-width: 40rem;
}
</style>