feat: move button into own component

This commit is contained in:
EETagent 2022-12-05 14:47:43 +01:00
parent b77e62e30c
commit b545987764

View file

@ -0,0 +1,14 @@
<script lang="ts">
export let value: string;
</script>
<input on:click type="submit" {value} />
<style>
input {
@apply bg-sspsBlue hover:bg-sspsBlueDark
@apply rounded-lg p-3 text-xl font-semibold text-white
@apply transition-colors duration-300;
@apply w-full;
}
</style>