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
1 change: 1 addition & 0 deletions bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossOrigin="" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Noto+Color+Emoji&display=swap" />
</head>
<body>
<div id="root"></div>
Expand Down
4 changes: 2 additions & 2 deletions src/components/pages/details/details-page-layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ interface DetailsPageLayoutProps {

export function DetailsPageLayout({ sidebar, children }: DetailsPageLayoutProps) {
return (
<div className="flex flex-col lg:flex-row gap-8">
<div className="lg:w-1/3">
<div className="flex flex-col lg:flex-row gap-8 mb-4 items-start">
<div className="lg:w-1/3 lg:sticky lg:top-4">
<Card>
<CardContent className="flex flex-col gap-4">{sidebar}</CardContent>
</Card>
Expand Down
9 changes: 7 additions & 2 deletions src/components/pages/feed/activity-item.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -114,13 +114,18 @@ export function ActivityItem({ profile, item, onReact, isReacting = false }: fee
onClick={() => onReact?.(emoji, currentReaction)}
disabled={isReacting || !currentUserId}
aria-pressed={active}
className={`inline-flex items-center gap-1 rounded-full border px-2 py-0.5 text-sm transition-colors cursor-pointer disabled:opacity-50 disabled:cursor-not-allowed ${
className={`inline-flex items-center gap-1 rounded-full border px-2 py-1 text-sm transition-colors cursor-pointer disabled:opacity-50 disabled:cursor-not-allowed ${
active
? "border-primary bg-primary/10 text-primary"
: "border-border/50 hover:border-primary/50 hover:bg-muted"
}`}
>
<span className="leading-none">{emoji}</span>
<span
className="text-base leading-none"
style={{ fontFamily: "'Noto Color Emoji', sans-serif" }}
>
{emoji}
</span>
{count > 0 && <span className="text-xs text-muted-foreground">{count}</span>}
</button>
);
Expand Down
4 changes: 2 additions & 2 deletions src/components/ui/image-zoom.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ export const ImageZoom = ({ className, backdropClassName, ...props }: ImageZoomP
classDialog={cn(
"[&::backdrop]:hidden",
"[&[open]]:fixed [&[open]]:m-0 [&[open]]:h-dvh [&[open]]:max-h-none [&[open]]:w-dvw [&[open]]:max-w-none [&[open]]:overflow-hidden [&[open]]:border-0 [&[open]]:bg-transparent [&[open]]:p-0",
"[&_[data-rmiz-modal-overlay]]:absolute [&_[data-rmiz-modal-overlay]]:inset-0 [&_[data-rmiz-modal-overlay]]:transition-all",
"[&_[data-rmiz-modal-overlay]]:absolute [&_[data-rmiz-modal-overlay]]:inset-0 [&_[data-rmiz-modal-overlay]]:transition-all [&_[data-rmiz-modal-overlay]]:duration-300 [&_[data-rmiz-modal-overlay]]:ease-out",
'[&_[data-rmiz-modal-overlay="hidden"]]:bg-transparent',
'**:data-[rmiz-modal-overlay="visible"]:bg-transparent! [&_[data-rmiz-modal-overlay="visible"]]:backdrop-blur-md',
"[&_[data-rmiz-modal-content]]:relative [&_[data-rmiz-modal-content]]:size-full",
"[&_[data-rmiz-modal-img]]:absolute [&_[data-rmiz-modal-img]]:origin-top-left [&_[data-rmiz-modal-img]]:cursor-zoom-out [&_[data-rmiz-modal-img]]:transition-transform",
"[&_[data-rmiz-modal-img]]:absolute [&_[data-rmiz-modal-img]]:origin-top-left [&_[data-rmiz-modal-img]]:cursor-zoom-out [&_[data-rmiz-modal-img]]:transition-transform [&_[data-rmiz-modal-img]]:duration-300 [&_[data-rmiz-modal-img]]:ease-out",
"motion-reduce:[&_[data-rmiz-modal-img]]:transition-none motion-reduce:[&_[data-rmiz-modal-overlay]]:transition-none",
backdropClassName,
)}
Expand Down
634 changes: 401 additions & 233 deletions src/routes/anime/$slug.tsx

Large diffs are not rendered by default.

508 changes: 334 additions & 174 deletions src/routes/book/$slug.tsx

Large diffs are not rendered by default.

564 changes: 369 additions & 195 deletions src/routes/game/$slug.tsx

Large diffs are not rendered by default.

500 changes: 337 additions & 163 deletions src/routes/manga/$slug.tsx

Large diffs are not rendered by default.

620 changes: 386 additions & 234 deletions src/routes/movie/$slug.tsx

Large diffs are not rendered by default.

796 changes: 473 additions & 323 deletions src/routes/tv/$slug.tsx

Large diffs are not rendered by default.