Skip to content

Commit

Permalink
chore: copywriting
Browse files Browse the repository at this point in the history
rayriffy committed Jun 6, 2024
1 parent 5eb6ce7 commit 78741ac
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/packlets/numpad/index.svelte
Original file line number Diff line number Diff line change
@@ -4,14 +4,17 @@
import { handlePadInput } from './handlePadInput'
</script>

<section class="fixed bottom-0 left-0 right-0 space-y-6 max-w-sm mx-auto">
<section class="fixed bottom-0 left-0 right-0 max-w-sm mx-auto">
<slot />
<ul class="grid grid-cols-3 gap-4 px-6 pb-6">
<ul class="grid grid-cols-3 gap-4 px-6 pt-6">
{#each Object.values(ButtonValue) as value}
<PadButton
value={value}
on:input={e => handlePadInput(e.detail)}
/>
{/each}
</ul>
<footer class="pt-4 pb-6 text-gray-400">
<p class="text-center text-xs sm:text-sm">&copy; 2024 Phumrapee L. | <a href="https://rayriffy.com" class="underline" target="_blank" rel="noopener noreferrer">Home</a> <a href="https://github.com/rayriffy/sushiro" class="underline" target="_blank" rel="noopener noreferrer">GitHub</a></p>
</footer>
</section>

0 comments on commit 78741ac

Please sign in to comment.