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
2 changes: 1 addition & 1 deletion components/app/video/related-videos.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export function RelatedVideos({

return (
<div className="px-4 lg:px-0">
<h2 className="font-semibold text-2xl text-foreground mb-3">Related Videos</h2>
<h2 className="text-xl font-bold text-foreground sm:text-xl mb-3">Other Videos</h2>

<div className="flex flex-col">
{videos.map((video) => (
Expand Down
2 changes: 1 addition & 1 deletion components/app/video/video-info.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export function VideoInfo({ video }: { video: VideoDetails }) {
}, [video.user?.username]);

return (
<div className="mt-4 space-y-6">
<div className="space-y-6">
<h1 className="text-xl font-bold text-foreground sm:text-xl">{video.title}</h1>

<div className="flex flex-col justify-between gap-6 sm:flex-row">
Expand Down
2 changes: 1 addition & 1 deletion components/app/video/video-player.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -674,7 +674,7 @@ export function VideoPlayer({
layout
transition={{ type: "spring", bounce: 0, duration: 0.3 }}
className={cn(
"relative z-0 max-w-full overflow-visible",
"relative z-0 max-w-full overflow-visible md:mb-4",
isTheatreMode && "lg:mx-auto lg:w-full lg:max-w-[calc(80vh*16/9)]",
)}
>
Expand Down
2 changes: 1 addition & 1 deletion components/ui/follow-button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export function FollowButton({
"rounded-full transition-colors duration-200",
following
? "bg-secondary text-foreground"
: "bg-foreground text-background border border-border",
: "bg-foreground text-background",
)}
>
<AnimatePresence mode="popLayout">
Expand Down
Loading