Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions data/projects.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,10 @@
"repo_url": "https://github.com/alob-mtc/runnerq",
"banner": "https://opengraph.githubassets.com/1/alob-mtc/runnerq",
"tags": ["crate"]
},
{
"repo_url": "https://github.com/deven96/ahnlich",
"banner": "https://opengraph.githubassets.com/1/deven96/ahnlich",
"tags": ["ai", "crate"]
}
]
5 changes: 4 additions & 1 deletion src/components/cards_list/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,10 @@ where
</div>
</Show>

<div class="flex mt-3 items-center gap-x-2 flex-wrap">
<div class=cn!(#(
"flex mt-3 items-center gap-x-2 flex-wrap opacity-0 duration-300 delay-100",
(section_in_view(), "opacity-100")
))>
{move ||
{

Expand Down
4 changes: 3 additions & 1 deletion src/hooks/use_in_view.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@ where
let set_visible = set_in_view;
let observer = IntersectionObserverWrap::new(
Box::new(move |entries, _| {
set_visible(entries[0].is_intersecting());
for entry in entries.iter() {
set_visible(entry.is_intersecting());
}
}),
in_view_options.observer_options.as_ref(),
);
Expand Down
Loading