icon cycle circle

This commit is contained in:
2023-07-16 06:21:49 +00:00
parent c6d43a95fa
commit bfa53f6b95
15 changed files with 423 additions and 29 deletions

View File

@@ -14,6 +14,7 @@
import TextLink from "../widgets/textLink.svelte"
import TopDown from "../widgets/topDown.svelte"
import { rerender } from "../../store"
import IconCycleCircle from "../widgets/iconCycleCircle.svelte"
export let row: Row
export let pageId: string
@@ -53,7 +54,7 @@
<h1>{row.pageTitle}</h1>
{/if}
{#if row.title}
<h2>{row.title}</h2>
<h2 class="">{row.title}</h2>
{/if}
{#if row.subTitle}
<h3>{row.subTitle}</h3>
@@ -87,6 +88,8 @@
<ExtendableBox col="{col}" />
{:else if col.contentType == "personPreview"}
<Persons col="{col}" pageId="{pageId}" />
{:else if col.contentType == "iconCycleCircle"}
<IconCycleCircle col="{col}" pageId="{pageId}" />
{/if}
</div>
{/each}
@@ -104,7 +107,6 @@
gap: 10px;
img {
width: 40px;
margin-right: 10px;
}
}
@@ -117,7 +119,6 @@
}
h1,
h2 {
line-height: 1;
padding-bottom: 40px;
}