@rkosafo/cai.components 0.0.19 → 0.0.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -11,18 +11,11 @@
|
|
|
11
11
|
let { topBar, children }: TFContentWrapperProps = $props();
|
|
12
12
|
</script>
|
|
13
13
|
|
|
14
|
-
<section id="tf-content" class="h-full w-full">
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
<BreadCrumb options={$breadCrumb} {activeBreadCrumb} on:click={optionClicked} />
|
|
21
|
-
</div>
|
|
22
|
-
</div>
|
|
23
|
-
{/if} -->
|
|
24
|
-
<div class=" h-full w-full flex-grow overflow-hidden">
|
|
25
|
-
{@render children()}
|
|
26
|
-
</div>
|
|
14
|
+
<section id="tf-content" class="flex h-full w-full flex-col">
|
|
15
|
+
<div>
|
|
16
|
+
{@render topBar?.()}
|
|
17
|
+
</div>
|
|
18
|
+
<section class="flex h-full w-full flex-grow rounded-tl-lg bg-[#f4f3ef]">
|
|
19
|
+
{@render children()}
|
|
27
20
|
</section>
|
|
28
21
|
</section>
|