design fixes

This commit is contained in:
Keviin Åberg Kultalahti 2021-07-21 13:08:55 +02:00
parent b41e84f8b7
commit b22b987ea8
1 changed files with 3 additions and 2 deletions

View File

@ -78,7 +78,7 @@
<Divider />
<RadioGroup bind:value={improvements} {options} />
<div class="footer">
<Detail size="S">PAGE 2 OF 3</Detail>
<Detail size="S">STEP 2 OF 3</Detail>
<ButtonGroup>
<Button secondary on:click={() => (step -= 1)}>Previous</Button>
<Button
@ -93,7 +93,7 @@
<Divider />
<TextArea bind:value={comment} placeholder="Add comments" />
<div class="footer">
<Detail size="S">PAGE 3 OF 3</Detail>
<Detail size="S">STEP 3 OF 3</Detail>
<ButtonGroup>
<Button secondary on:click={() => (step -= 1)}>Previous</Button>
<Button disabled={!comment} cta on:click={submitFeedback}
@ -133,5 +133,6 @@
.footer {
display: flex;
justify-content: space-between;
align-items: center;
}
</style>