Skip to content

Commit

Permalink
fix: move margins to button in slideshow
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewreifman authored and jorgemoya committed Nov 15, 2024
1 parent 7f46663 commit defe9ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/vibes/soul/sections/slideshow/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -131,12 +131,12 @@ export function Slideshow({ slides, interval = 5000, className }: Props) {
{title}
</h1>
{description != null && description !== '' && (
<p className="mb-6 mt-2 max-w-xl text-base leading-normal text-background/80 @xl:mb-8 @xl:mt-3 @xl:text-lg">
<p className="mt-2 max-w-xl text-base leading-normal text-background/80 @xl:mt-3 @xl:text-lg">
{description}
</p>
)}
{cta != null && cta.href !== '' && cta.label !== '' && (
<ButtonLink href={cta.href} variant="tertiary">
<ButtonLink href={cta.href} variant="tertiary" className="mt-6 @xl:mt-8">
{cta.label}
</ButtonLink>
)}
Expand Down

0 comments on commit defe9ab

Please sign in to comment.