Portfolio/frontend/src/lib/components/button/Submit.svelte
2022-12-24 14:44:30 +01:00

14 lines
315 B
Svelte

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