Skip to content
Merged
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
4 changes: 2 additions & 2 deletions apps/web/app/s/[videoId]/_components/ShareHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ export const ShareHeader = ({
isPublic={data.public}
spacesData={spacesData}
/>
<div className={clsx(!showUpgradeBanner ? "mt-8" : "mt-0")}>
<div className="mt-8">
<div className="flex flex-col gap-6 lg:flex-row lg:items-center lg:justify-between lg:gap-0">
<div className="items-center md:flex md:justify-between md:space-x-6">
<div className="mb-3 md:mb-0">
Expand Down Expand Up @@ -260,7 +260,7 @@ export const ShareHeader = ({
{user !== null && !isUserPro && (
<button
type="button"
className="flex items-center mt-1 text-sm text-gray-400 cursor-pointer hover:text-blue-500"
className="flex items-center mt-2 mb-3 text-sm text-gray-400 duration-200 cursor-pointer hover:text-blue-500"
onClick={() => setUpgradeModalOpen(true)}
>
<Globe2 className="mr-1 w-4 h-4" />
Expand Down
Loading