mirror of
https://github.com/jakejarvis/sofa.git
synced 2026-08-29 01:35:39 -04:00
- Stack title-hero poster/metadata vertically on mobile (flex-col md:flex-row), switch backdrop tall breakpoint from sm to md - Extract bio expand/collapse logic into reusable ExpandableText component; use it in PersonHero and TitleHero - Fix ContinueWatchingCard image to use fill + sizes instead of fixed width/height to avoid layout shift - Add fade-out gradient on genre chip scrollbar edge on mobile - Show scaled-down ambient glow on mobile instead of hiding it entirely - Humanize knownForDepartment labels (Acting→Actor, Directing→Director, etc.) - Change cast member name from truncate to line-clamp-2 for wrapping - Hide tooltip arrow via [&>:last-child]:hidden instead of color-matching it - Apply safe-area-inset padding to HeroBanner content on notched devices
39 lines
1.6 KiB
TypeScript
39 lines
1.6 KiB
TypeScript
"use client";
|
|
|
|
import { Radio as RadioPrimitive } from "@base-ui/react/radio";
|
|
import { RadioGroup as RadioGroupPrimitive } from "@base-ui/react/radio-group";
|
|
|
|
import { cn } from "@/lib/utils";
|
|
|
|
function RadioGroup({ className, ...props }: RadioGroupPrimitive.Props) {
|
|
return (
|
|
<RadioGroupPrimitive
|
|
data-slot="radio-group"
|
|
className={cn("grid w-full gap-3", className)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
function RadioGroupItem({ className, ...props }: RadioPrimitive.Root.Props) {
|
|
return (
|
|
<RadioPrimitive.Root
|
|
data-slot="radio-group-item"
|
|
className={cn(
|
|
"group/radio-group-item peer relative flex aspect-square size-4 shrink-0 rounded-full border border-input outline-none after:absolute after:-inset-x-3 after:-inset-y-2 focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 disabled:cursor-not-allowed disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 aria-invalid:aria-checked:border-primary data-checked:border-primary data-checked:bg-primary data-checked:text-primary-foreground dark:bg-input/30 dark:data-checked:bg-primary dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40",
|
|
className,
|
|
)}
|
|
{...props}
|
|
>
|
|
<RadioPrimitive.Indicator
|
|
data-slot="radio-group-indicator"
|
|
className="flex size-4 items-center justify-center"
|
|
>
|
|
<span className="absolute top-1/2 left-1/2 size-2 -translate-x-1/2 -translate-y-1/2 rounded-full bg-primary-foreground" />
|
|
</RadioPrimitive.Indicator>
|
|
</RadioPrimitive.Root>
|
|
);
|
|
}
|
|
|
|
export { RadioGroup, RadioGroupItem };
|