Skip to content

Commit 1c345a2

Browse files
committed
Solves sticky overlapping, even though breaks sticky itself
1 parent 123f2bf commit 1c345a2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/components/Blog.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,13 +79,12 @@ export default function Blog({ data, tags, gardenTags }: Props) {
7979
)}
8080
</For>
8181
</ul>
82-
</div>
8382

84-
{/* <Show when={tags.includes("evergreen")}> */}
85-
<div class="sticky top-56">
83+
{/* <Shnow when={tags.includes("evergreen")}> */}
8684
<div class="text-sm font-semibold uppercase mb-2 text-black dark:text-white">
8785
Digital Garden Tags
8886
</div>
87+
8988
<ul class="flex flex-wrap sm:flex-col gap-1.5">
9089
<For each={gardenTags}>
9190
{(tag) => (
@@ -125,6 +124,7 @@ export default function Blog({ data, tags, gardenTags }: Props) {
125124
</For>
126125
</ul>
127126
</div>
127+
128128
{/* </Show> */}
129129
</div>
130130
<div class="col-span-3 sm:col-span-2">

0 commit comments

Comments
 (0)