Skip to content

Commit

Permalink
Fix last step logos width (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
barbara-chaves authored May 7, 2024
1 parent 64391b8 commit 5208725
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions client/src/containers/story/steps/layouts/outro-step.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ const OutroStepLayout = ({ step, showContent }: MediaStepLayoutProps) => {
muted
loop
autoPlay={true}
controls
>
<source src={mediaSrc} type={mediaMime} />
</video>
Expand Down Expand Up @@ -153,7 +154,7 @@ const OutroStepLayout = ({ step, showContent }: MediaStepLayoutProps) => {
width={50}
height={30}
alt=""
className="h-8 w-full object-contain object-center"
className="h-8 w-full max-w-[125px] object-contain object-center"
/>
</a>
) : (
Expand All @@ -163,7 +164,7 @@ const OutroStepLayout = ({ step, showContent }: MediaStepLayoutProps) => {
width={50}
height={30}
alt=""
className="h-8 w-full object-contain object-center"
className="h-8 w-full max-w-[125px] object-contain object-center"
/>
</div>
);
Expand Down

0 comments on commit 5208725

Please sign in to comment.