mirror of
https://github.com/danbulant/Portfolio
synced 2026-05-24 20:42:15 +00:00
14 lines
315 B
Svelte
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>
|