Browse Source

fixes Issue#208 error page rendering of buttons

master
Silberengel 12 months ago
parent
commit
85f9b87e6f
  1. 6
      src/routes/publication/+error.svelte

6
src/routes/publication/+error.svelte

@ -20,11 +20,11 @@
{page.error?.message} {page.error?.message}
</P> </P>
<div class='flex space-x-2'> <div class='flex space-x-2'>
<Button class='btn-leather w-fit' size='sm' onclick={() => invalidateAll()}> <Button class='btn-leather min-w-[120px] text-center' size='sm' onclick={() => invalidateAll()}>
Try Again Try Again
</Button> </Button>
<Button class='btn-leather w-fit' size='sm' outline onclick={() => goto('/')}> <Button class='btn-leather min-w-[120px] text-center' size='sm' outline onclick={() => goto('/')}>
Return to Home Return home
</Button> </Button>
</div> </div>
</Alert> </Alert>

Loading…
Cancel
Save