mirror of
https://github.com/MewoLab/AquaDX.git
synced 2025-12-14 11:56:15 +08:00
33 lines
634 B
Svelte
33 lines
634 B
Svelte
<script lang="ts">
|
|
</script>
|
|
|
|
<main>
|
|
<h1>Vite + Svelte</h1>
|
|
|
|
<p>
|
|
Check out <a href="https://github.com/sveltejs/kit#readme" target="_blank" rel="noreferrer">SvelteKit</a>, the official Svelte app framework powered by Vite!
|
|
</p>
|
|
|
|
<p class="read-the-docs">
|
|
Click on the Vite and Svelte logos to learn more
|
|
</p>
|
|
</main>
|
|
|
|
<style>
|
|
.logo {
|
|
height: 6em;
|
|
padding: 1.5em;
|
|
will-change: filter;
|
|
transition: filter 300ms;
|
|
}
|
|
.logo:hover {
|
|
filter: drop-shadow(0 0 2em #646cffaa);
|
|
}
|
|
.logo.svelte:hover {
|
|
filter: drop-shadow(0 0 2em #ff3e00aa);
|
|
}
|
|
.read-the-docs {
|
|
color: #888;
|
|
}
|
|
</style>
|