Fix for more info on account linking and remove fixed height on subscribe buttons card which caused UI issue

This commit is contained in:
austinkelsay 2025-02-08 16:56:57 -06:00
parent 983b570316
commit 82b36d6b70
2 changed files with 11 additions and 3 deletions

View File

@ -127,7 +127,11 @@ const LinkAccountsCard = ({ session }) => {
<div className="bg-gray-800 rounded-xl p-6 flex flex-col items-start w-full border border-gray-700 my-2">
<div className="flex flex-row justify-between items-center w-full mb-6">
<h2 className="text-2xl font-bold text-white">Link Accounts</h2>
<MoreInfo title="Link Accounts" description="Link your accounts to your profile. You can link your Github, Nostr, and Email accounts to your profile to ensure you can access your account from any device." />
<MoreInfo
tooltip="Learn more about account linking"
modalTitle="Link Accounts"
modalBody="Link your accounts to your profile. You can link your Github, Nostr, and Email accounts to your profile to ensure you can access your account from any device."
/>
</div>
<div className="flex flex-col gap-4">
@ -165,7 +169,11 @@ const LinkAccountsCard = ({ session }) => {
<div className="bg-gray-800 rounded-xl p-6 flex flex-col items-start w-full max-w-[400px] mt-2 border border-gray-700">
<div className="flex flex-row justify-between items-center w-full mb-6">
<h2 className="text-2xl font-bold text-white">Link Accounts</h2>
<MoreInfo title="Link Accounts" description="Link your accounts to your profile. You can link your Github, Nostr, and Email accounts to your profile to ensure you can access your account from any device." />
<MoreInfo
tooltip="Learn more about account linking"
modalTitle="Link Accounts"
modalBody="Link your accounts to your profile. You can link your Github, Nostr, and Email accounts to your profile to ensure you can access your account from any device."
/>
</div>
<div className="flex flex-col gap-4 w-full">
<GenericButton

View File

@ -119,7 +119,7 @@ const UserSubscription = () => {
{!subscribed && (
<Card
title="Subscribe to PlebDevs"
className="mb-2 h-[330px] max-lap:h-auto"
className="mb-2 max-lap:h-auto"
pt={{
body: { className: 'py-2' },
content: { className: 'pt-0' }