Skip to content

Commit

Permalink
fix: ui updates on /explora
Browse files Browse the repository at this point in the history
  • Loading branch information
Apple authored and Apple committed Oct 3, 2024
1 parent ab39ced commit 8a2fc6c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/explora/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const Page = () => {
<>
<div className="flex">
{/* Main Content */}
<div className="flex-grow p-4">
<div className="flex-grow">
<Article heroHeaderText="Explora" postText="">
<div className={`${canela_th.className} px-4 md:px-8 lg:px-12`}>
<header>
Expand All @@ -28,11 +28,11 @@ const Page = () => {
</header>

<section>
<ul className="flex justify-start px-0 flex-wrap">
<ul className="flex justify-center px-0 flex-wrap">
{explorations.map((exploration) => (
<li
key={exploration.exploration}
className="p-4 flex text-grey flex-col border border-titledCream hover:shadowMd gap-2 hover:bg-white hover:scale-105 hover:text-tealBright transition duration-200 rounded-[4px] w-[350px] max-w-[100%]"
className="p-4 flex text-grey flex-col border border-titledCream hover:shadowMd gap-2 hover:bg-white hover:scale-105 hover:text-tealBright transition duration-200 rounded-[4px] w-full max-w-[100%]"
>
<Link href={`/explora/${exploration.exploration}`}>
<div>
Expand Down

0 comments on commit 8a2fc6c

Please sign in to comment.