zwischenstand

This commit is contained in:
2025-10-02 08:42:50 +00:00
parent 9d5baf972b
commit 099530b7c8
721 changed files with 438 additions and 1779 deletions

View File

@@ -18,7 +18,7 @@
$: isMobile = innerWidth < 968
</script>
<svelte:window bind:innerWidth="{innerWidth}" />
<svelte:window bind:innerWidth={innerWidth} />
{#if block.steps?.horizontal}
<div
@@ -28,9 +28,9 @@
<ul class="step-blocks horizontal">
{#each block.steps.items as item, i}
<Step
item="{item}"
i="{i}"
isMobile="{isMobile}"
item={item}
i={i}
isMobile={isMobile}
/>
{/each}
</ul>
@@ -39,9 +39,9 @@
<ul class="step-blocks">
{#each block.steps.items as item, i}
<Step
item="{item}"
i="{i}"
isMobile="{isMobile}"
item={item}
i={i}
isMobile={isMobile}
/>
{/each}
</ul>