Skip to content

Commit

Permalink
Change page layout
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabau committed Oct 12, 2024
1 parent e087977 commit 0eac838
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion gabau.github.io/src/pages/Playground.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ export default function PlayGround() {
<>
<TypeWriterHeader title="Playground" timeout={300} className="p-10" />
<p>For the miscellaneous stuff</p>
<div className="flex flex-wrap flex-row h-auto w-full justify-center">
<div className="flex flex-row items-center w-full h-auto justify-center">
<div className="flex flex-wrap flex-row h-auto w-3/5 justify-center">
{playgroundRoutes.map((v) => {
return (
<PlayGroundCard
Expand All @@ -48,6 +49,7 @@ export default function PlayGround() {
);
})}
</div>
</div>
</>
);
}
2 changes: 1 addition & 1 deletion gabau.github.io/src/routes/playground.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export const playgroundRoutes = [
title: "Sort visualisation",
description: "Simple sorting visualisation of quick sort. It is pure quick sort which makes it slow on sorted array",
element: <SortVisPage />
}
},
];


0 comments on commit 0eac838

Please sign in to comment.