feat: make consent more suggestive

This commit is contained in:
oSumAtrIX
2023-06-21 03:13:30 +02:00
parent 9900635879
commit 75df0b77bf

View File

@@ -96,12 +96,12 @@
<Dialogue bind:modalOpen={showConsentModal} notDismissible> <Dialogue bind:modalOpen={showConsentModal} notDismissible>
<svelte:fragment slot="title">It's your choice</svelte:fragment> <svelte:fragment slot="title">It's your choice</svelte:fragment>
<svelte:fragment slot="description"> <svelte:fragment slot="description">
We use analytics to improve your experience on this site. By clicking "Accept" you allow us to We use analytics to improve your experience on this site. By clicking "Allow", you allow us to
collect anonymous data about your visit. collect anonymous data about your visit.
</svelte:fragment> </svelte:fragment>
<svelte:fragment slot="buttons"> <svelte:fragment slot="buttons">
<Button type="text" on:click={() => rememberChoice(false)}>Deny</Button> <Button type="text" on:click={() => rememberChoice(false)}>Deny</Button>
<Button type="outlined" on:click={() => rememberChoice(true)}>Accept</Button> <Button type="filled" on:click={() => rememberChoice(true)}>Allow</Button>
</svelte:fragment> </svelte:fragment>
</Dialogue> </Dialogue>