alpha
Login
or
Join now
flo-bit.dev
/
skywatched
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
[READ-ONLY] Mirror of https://github.com/flo-bit/skywatched. review movies and tv shows, based on at proto
skywatched.app
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
trying cn
author
gree45
date
2 years ago
(Jan 24, 2025, 1:34 PM +0100)
commit
fefb9c23
fefb9c23359215ab538dd954733c169a8a57bc22
parent
2860997a
2860997a5c59e6a85c8ceb5b12d81a974c94f8a7
+2
-2
1 changed file
Expand all
Collapse all
Unified
Split
src
routes
game
+page.svelte
+2
-2
src/routes/game/+page.svelte
View file
Reviewed
···
181
181
{/if}
182
182
183
183
{#if data.cast.length > 0}
184
184
-
<div class="flex-row px-4 pb-8 pt-4 text-sm text-white">
184
184
+
<div class="flex px-4 pb-8 pt-4 text-sm text-white">
185
185
<div class="mb-2 text-lg font-semibold">cast</div>
186
186
187
187
-
<div class={cn('flex justify-content-start gap-x-6 overflow-x-auto')}>
187
187
+
<div class={'flex gap-x-6 overflow-x-auto'}>
188
188
{#each data.cast as castMember}
189
189
<a
190
190
href={`/cast/${castMember.id}-${nameToId(castMember.name)}`}