Changed link to secondary to ensure it adapts correctly to the theme
This commit is contained in:
parent
69e68e27a9
commit
cbc67c6fdb
|
@ -122,6 +122,7 @@
|
|||
<div class="tour-navigation">
|
||||
{#if typeof tourOnSkip === "function"}
|
||||
<Link
|
||||
secondary
|
||||
quiet
|
||||
on:click={() => {
|
||||
skipping = true
|
||||
|
@ -130,8 +131,10 @@
|
|||
$goto(tour.endRoute)
|
||||
}
|
||||
}}
|
||||
disabled={skipping}>Skip</Link
|
||||
disabled={skipping}
|
||||
>
|
||||
Skip
|
||||
</Link>
|
||||
{/if}
|
||||
<Button cta on:click={nextStep} disabled={skipping}>
|
||||
<div>{lastStep ? "Finish" : "Next"}</div>
|
||||
|
@ -154,9 +157,6 @@
|
|||
justify-content: end;
|
||||
align-items: center;
|
||||
}
|
||||
.tour-navigation :global(.spectrum-Link) {
|
||||
color: white;
|
||||
}
|
||||
.tour-body :global(.feature-list) {
|
||||
margin-bottom: 0px;
|
||||
padding-left: var(--spacing-xl);
|
||||
|
|
Loading…
Reference in New Issue