Skip to content

Commit 0b6fe4d

Browse files
Merge pull request #178 from mindfiredigital/dev
fix responsiveness
2 parents 8bc8104 + 745e4e5 commit 0b6fe4d

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/app/contributors/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ const Contributors = () => {
6767
what we do.
6868
</p>
6969
{contributorsArray ? (
70-
<div className='grid grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-4'>
70+
<div className='grid grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-4 px-6'>
7171
{sortedAllContributors.map((contributor) => (
7272
<div
7373
key={contributor.id}

src/app/packages/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ const Stats = () => {
225225
</h1>
226226
<PackageCount totalPackages={packages.length} />
227227
</div>
228-
<p className='mt-6 text-xl text-mf-light-grey tracking-wide mb-10 text-center'>
228+
<p className='mt-6 text-xl text-mf-light-grey tracking-wide mb-10 text-center px-4'>
229229
Elevate your projects with Mindfire&apos;s game-changing open-source
230230
packages.
231231
</p>

src/app/projects/components/ProjectCard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export default function ProjectCard({
6565
</p>
6666
{/* Show toggle outside the paragraph */}
6767
{shortDescription.length > 120 && (
68-
<span className='text-xs text-blue-500 mt-1 block'>
68+
<span className='text-xs text-mindfire-text-red mt-1 block'>
6969
{expandDescription ? "less" : "more"}
7070
</span>
7171
)}

src/app/projects/components/ProjectGrid.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export default function ProjectGrid({ title, projectData }: Props) {
3434
</h1>
3535
<ProjectCount totalProjects={projectData.length} />
3636
</div>
37-
<div className='mt-12 px-4 grid gap-6 max-w-6xl mx-auto md:grid-cols-2 lg:grid-cols-3'>
37+
<div className='mt-12 px-8 grid gap-6 max-w-6xl mx-auto md:grid-cols-2 lg:grid-cols-3'>
3838
{sortedProjects.map(
3939
(
4040
{

0 commit comments

Comments
 (0)