Skip to content

Commit 76a1e90

Browse files
committed
Updated button color
1 parent 6ffafe1 commit 76a1e90

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

apps/admin-x-activitypub/src/components/layout/Onboarding/Step1.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const Step1: React.FC<{ onNext: () => void }> = ({onNext}) => {
2121
<p><strong>{account?.name}</strong> is now part of the world’s largest open network.</p>
2222
</div>
2323
</div>
24-
<Button className={`min-w-60 bg-gradient-to-r from-purple-500 to-purple-600`} size='lg' onClick={onNext}>Next &rarr;</Button>
24+
<Button className={`min-w-60 bg-gradient-to-r from-purple-500 to-[#6A1AD6] hover:opacity-90`} size='lg' onClick={onNext}>Next &rarr;</Button>
2525
</div>
2626
<div className='relative z-10 h-full'>
2727
<img className='absolute left-1/2 top-[calc(-280px)] w-full min-w-[1240px] max-w-[1300px] -translate-x-1/2' src={apNodes} />

apps/admin-x-activitypub/src/components/layout/Onboarding/Step2.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ const Step2: React.FC<{onNext: () => void}> = ({onNext}) => {
7070
<p className='tracking-tight text-gray-700 dark:text-gray-600'>Best of all, you get realtime feedback and visibility when something you’ve created is spreading fast across the social web.</p>
7171
</div>
7272
</div>
73-
<Button className='min-w-60 bg-gradient-to-r from-purple-500 to-purple-600' size='lg' onClick={onNext}>Next &rarr;</Button>
73+
<Button className='min-w-60 bg-gradient-to-r from-purple-500 to-[#6A1AD6] hover:opacity-90' size='lg' onClick={onNext}>Next &rarr;</Button>
7474
</Header>
7575
<div className='mt-8 flex h-full max-h-[670px] flex-col items-stretch justify-end'>
7676
<div className='relative -mx-14 mt-5 w-[calc(100%+112px)] overflow-y-hidden px-14 pt-8'>

apps/admin-x-activitypub/src/components/layout/Onboarding/Step3.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ const Step3: React.FC<{onComplete: () => Promise<void>}> = ({onComplete}) => {
316316
<p className='tracking-tight text-gray-700 dark:text-gray-600'>Follow-back your community to connect with them directly, or subscribe to your peers for inspiration to fuel your next idea. You now have a native <span className='font-semibold text-black'>social web reader</span> inside Ghost for keeping track of your favourite creators across different platforms.</p>
317317
</div>
318318
</div>
319-
<Button className='min-w-60 bg-gradient-to-r from-purple-500 to-purple-600' size='lg' onClick={onComplete}>Next &rarr;</Button>
319+
<Button className='min-w-60 bg-gradient-to-r from-purple-500 to-[#6A1AD6] hover:opacity-90' size='lg' onClick={onComplete}>Next &rarr;</Button>
320320
</Header>
321321
<div className='mt-8 flex h-full max-h-[760px] flex-col items-stretch justify-end'>
322322
<div

0 commit comments

Comments
 (0)