mirror of
https://github.com/cupcakearmy/svelte-hint.git
synced 2025-09-08 01:00:40 +00:00
initial commit
This commit is contained in:
27
src/routes/index.svelte
Normal file
27
src/routes/index.svelte
Normal 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>
|
Reference in New Issue
Block a user