Skip to content

Commit

Permalink
Merge pull request #17 from she-code-africa/final-changes
Browse files Browse the repository at this point in the history
Final changes
  • Loading branch information
EseAlli authored Jul 4, 2024
2 parents a6c5ece + b1175dc commit ede8df1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/activities/coding-page/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ const CodingPageComponent = () => {
loader={<ApiLoading />}
hasMore={hasMore}
>
<section className="w-full grid grid-cols-3 gap-5 ">
<section className="w-full grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-8">
{filteredCourses.map((item, i) => (
<InfoCard
key={i}
Expand Down
2 changes: 1 addition & 1 deletion src/components/activities/game-development/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ const GameDevelopmentPage = () => {
loader={<ApiLoading />}
hasMore={hasMore}
>
<section className="w-full grid grid-cols-3 gap-5 ">
<section className="w-full grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-8 ">
{filteredCourses.map((item, i) => (
<InfoCard
key={i}
Expand Down
2 changes: 1 addition & 1 deletion src/components/activities/robotics/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ const RoboticsPageComponent = () => {
loader={<ApiLoading />}
hasMore={hasMore}
>
<section className="w-full grid grid-cols-3 gap-5 ">
<section className="w-full grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-8 ">
{filteredCourses.map((item, i) => (
<InfoCard
key={i}
Expand Down

0 comments on commit ede8df1

Please sign in to comment.