website/src/lib/Form/Form.svelte

29 lines
602 B
Svelte
Raw Normal View History

2022-08-18 00:08:27 +05:30
<script lang="ts">
export let action: string = "";
export let method: string = "";
export let id: string = "";
2022-08-18 00:08:27 +05:30
</script>
2022-12-27 20:58:47 +05:30
<form
{action}
{method}
{id}
class="flex flex-col gap-4 w-fit"
>
2022-08-31 16:46:12 +05:30
<slot />
2022-08-18 00:08:27 +05:30
</form>
<style>
:global(.form-button) {
2022-12-27 20:58:47 +05:30
@apply bg-secondary border-none rounded-2 p-2 cursor-pointer text-text font-primary decoration-none;
2022-08-18 00:08:27 +05:30
}
:global(.form-button:not(select):hover) {
2022-12-27 20:58:47 +05:30
@apply bg-accent decoration-none transition-all duration-500 text-secondary;
2022-08-18 00:08:27 +05:30
}
:global(.form-textbox) {
2022-12-27 20:58:47 +05:30
@apply bg-secondary text-text rounded-2 border-none p-2 font-primary outline-none;
2022-08-18 00:08:27 +05:30
}
2022-08-31 16:46:12 +05:30
</style>