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/routes/(login) | |
| parent | 4e3ad13aca163e733724b205c250bdb67cc56c29 (diff) | |
| parent | 6d51f8568e337e768505ccfdef916b84dd6eb1b3 (diff) | |
Merge branch 'prop/stylize'
Diffstat (limited to 'ui/routes/(login)')
| -rw-r--r-- | ui/routes/(login)/invite/[invite]/+page.svelte | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/routes/(login)/invite/[invite]/+page.svelte b/ui/routes/(login)/invite/[invite]/+page.svelte index 4433bd6..132cbc1 100644 --- a/ui/routes/(login)/invite/[invite]/+page.svelte +++ b/ui/routes/(login)/invite/[invite]/+page.svelte @@ -25,11 +25,11 @@ </script> {#await data.invite} - <div class="card m-4 p-4"> + <div class="invite-text"> <p>Loading invitation…</p> </div> {:then invite} - <div class="card m-4 p-4"> + <div class="invite-text"> <p>Hi there! {invite.issuer} invites you to the conversation.</p> </div> <LogIn {disabled} bind:username bind:password onsubmit={(event) => onSubmit(event, invite.id)} /> |
