Skip to content

Commit 29be60f

Browse files
fixes
1 parent e2fe3ae commit 29be60f

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/routes/(experiments)/new-homepage/(components)/scale.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -213,15 +213,15 @@
213213
</div>
214214
{/each}
215215

216-
<div class="pointer-events-none absolute inset-0 z-50">
216+
<!-- <div class="pointer-events-none absolute inset-0 z-50">
217217
{#each correctStats as stat, i}
218218
<div
219219
class="border-accent absolute top-[var(--top)] left-[calc(var(--left)_+_1px)] h-2 w-2 -translate-1/2 rounded-full border bg-white"
220220
style:--top={`${stat.top}%`}
221221
style:--left="{i * 25}%"
222222
></div>
223223
{/each}
224-
</div>
224+
</div> -->
225225
</div>
226226
</div>
227227
<div

src/routes/products/sites/(components)/integrate.svelte

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
1919
const products: Array<{
2020
label: string;
21-
icon: unknown;
21+
icon: string;
2222
line: (isActive: boolean) => string;
23-
image: unknown;
23+
image: string;
2424
}> = [
2525
{
2626
label: 'Auth',
@@ -128,7 +128,7 @@
128128
<div class="my-12 flex h-fit flex-1 gap-3" bind:this={container}>
129129
<div class="sticky inset-y-0 top-0 left-0 flex h-full justify-center bg-transparent">
130130
<div
131-
class="border-gradient absolute z-10 flex size-4 items-center justify-center rounded-full bg-gradient-to-tl from-transparent to-white/32 md:-left-7"
131+
class="border-gradient absolute z-10 flex size-4 items-center justify-center rounded-full bg-gradient-to-tl from-transparent to-white/32"
132132
>
133133
<div class="size-1 rounded-full bg-white"></div>
134134
</div>

0 commit comments

Comments
 (0)