Skip to content

Commit

Permalink
(webapp)fix:participate gap + section font and padding
Browse files Browse the repository at this point in the history
  • Loading branch information
Bran18 committed Jul 25, 2024
1 parent 6a90d63 commit efd3613
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/webapp/components/layout/footer/participate.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default function Participate({ lang, dict }: ParticipateProps) {
<Section heading={dict.footer.stepsInfo}>
<div
key="steps-info-title"
className="flex flex-col items-center gap-12 lg:flex-row lg:items-stretch lg:justify-between"
className="flex flex-col items-center gap-[53px] lg:flex-row lg:items-stretch lg:justify-between"
>
{dict.footer.step.map(
(
Expand Down
4 changes: 2 additions & 2 deletions apps/webapp/components/shared/section.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import Balancer from 'react-wrap-balancer'

export function Section({ heading, children, subheading }: SectionProps) {
return (
<section className="flex flex-col justify-center pt-20 pb-0 text-center align-center lg:pt-40">
<h2 className="relative z-10 flex justify-center w-full py-0 text-4xl font-medium leading-none text-center shadow-sm">
<section className="flex flex-col justify-center pt-20 text-center align-center lg:pt-40">
<h2 className="relative z-10 flex justify-center w-full pb-10 font-sans text-3xl font-bold leading-none text-center shadow-sm">
<Balancer>{heading}</Balancer>
</h2>
{/* {subheading ? (
Expand Down

0 comments on commit efd3613

Please sign in to comment.