diff options
| author | Owen Jacobson <owen@grimoire.ca> | 2025-01-11 13:34:40 -0500 |
|---|---|---|
| committer | Owen Jacobson <owen@grimoire.ca> | 2025-01-11 13:34:40 -0500 |
| commit | ea0392a2bb12c158f9167105752f8fa315cff47d (patch) | |
| tree | dec4545ccbe44c8e2baf6e633308359f40ac610a /ui/lib/components/Invites.svelte | |
| parent | 4e3ad13aca163e733724b205c250bdb67cc56c29 (diff) | |
| parent | 6d51f8568e337e768505ccfdef916b84dd6eb1b3 (diff) | |
Merge branch 'prop/stylize'
Diffstat (limited to 'ui/lib/components/Invites.svelte')
| -rw-r--r-- | ui/lib/components/Invites.svelte | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ui/lib/components/Invites.svelte b/ui/lib/components/Invites.svelte index 493bf1c..27d3754 100644 --- a/ui/lib/components/Invites.svelte +++ b/ui/lib/components/Invites.svelte @@ -13,12 +13,12 @@ } </script> -<form {onsubmit}> - <button class="btn bg-primary-500" type="submit">create invitation</button> +<form class="form" {onsubmit}> + <button type="submit">create invitation</button> </form> -<ul class="mt-4"> +<ul class="invite-list"> {#each invites as invite} - <li class="my-1"><Invite id={invite.id} /></li> + <li><Invite id={invite.id} /></li> {/each} </ul> |
