Skip to content

Commit

Permalink
fix: Minor change in spacing
Browse files Browse the repository at this point in the history
Changed spacing for projects involved in about page
and footer section for company address and country
  • Loading branch information
Ashmin-Bhujel committed Oct 16, 2024
1 parent d09b94b commit 5c2538e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/UI/pages/About.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ export const About = () => {
<h3 className="text-xl font-semibold">{member.name}</h3>
<p className="text-muted-foreground">{member.role}</p>
{member.projectsInvolved.length > 0 && (
<div className="mt-4 flex flex-col space-x-4">
Projects Involved :
<div className="flex gap-1">
<div className="mt-4 flex flex-col space-y-2">
<p>Projects Involved :</p>
<div className="flex gap-2">
{member.projectsInvolved.map((project, index) => (
<Button variant="secondary" key={index}>
{project}
Expand Down
5 changes: 3 additions & 2 deletions src/UI/pages/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@ export const Footer = () => {

<p className="flex gap-2">
<MapPin className="size-5" />
<p>{companyDataConstants.address}</p>,{' '}
{companyDataConstants.country}
<span>
{companyDataConstants.address}, {companyDataConstants.country}
</span>
</p>
</div>

Expand Down

0 comments on commit 5c2538e

Please sign in to comment.