Skip to content
This repository has been archived by the owner on Jun 1, 2024. It is now read-only.

Commit

Permalink
Merge pull request #113 from frigvid/fix/margin-error-aboutus
Browse files Browse the repository at this point in the history
Make additional margin on aboutus only apply to lg: and above.
  • Loading branch information
frigvid authored Apr 22, 2024
2 parents 0223025 + 19c6c35 commit 2301846
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/(misc)/aboutus/page.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default function AboutUs() {

return (
<main className="flex flex-col items-center text-center px-4 py-8">
<section className="max-w-4xl text-justify space-y-4 space-x-12 text-lg">
<section className="max-w-4xl text-justify space-y-4 lg:space-x-12 text-lg">
<h1 className="text-4xl text-center font-bold mb-6">{t('welcome_title')}</h1>
<p>
{t('welcome_paragraph_1')}
Expand All @@ -27,7 +27,7 @@ export default function AboutUs() {
{t('welcome_paragraph_3')}
</p>
</section>
<section className="max-w-4xl mt-10 text-justify space-y-4 space-x-12">
<section className="max-w-4xl mt-10 text-justify space-y-4 lg:space-x-12">
<h2 className="text-3xl text-center font-bold mb-6">{t('our_vision_title')}</h2>
<p className="text-lg">
{t('our_vision_paragraph')}
Expand Down

0 comments on commit 2301846

Please sign in to comment.