fix: tweak submit header and font weight

This commit is contained in:
afn 2023-03-27 16:43:01 -04:00
parent 0cb09476c0
commit aca27c2e56
2 changed files with 5 additions and 6 deletions

View File

@ -92,13 +92,13 @@ h4 {
h5 { h5 {
color: var(--white); color: var(--white);
font-weight: 300; font-weight: 400;
font-size: 1rem; font-size: 1rem;
} }
h6 { h6 {
color: var(--white); color: var(--white);
font-weight: 300; font-weight: 400;
font-size: 1rem; font-size: 1rem;
} }

View File

@ -32,7 +32,6 @@
let submit = false; let submit = false;
let submitted = false; let submitted = false;
let erred = false; let erred = false;
let botToken: string;
$: finalPage = currentPage >= logoPages; $: finalPage = currentPage >= logoPages;
$: min = currentPage * logoAmount; $: min = currentPage * logoAmount;
$: max = min + logoAmount; $: max = min + logoAmount;
@ -222,10 +221,10 @@
<Modal bind:modalOpen={submitModal}> <Modal bind:modalOpen={submitModal}>
<svelte:fragment slot="title"> <svelte:fragment slot="title">
{#if submit} {#if submitted}
Submitting
{:else if submitted}
Vote casted Vote casted
{:else if submit}
Submitting
{:else} {:else}
Confirm submission Confirm submission
{/if} {/if}