Skip to content

Commit

Permalink
fix: border adjustment
Browse files Browse the repository at this point in the history
  • Loading branch information
ThanaphomH committed Jun 28, 2024
1 parent 2cf238c commit 1ae1fc9
Showing 1 changed file with 13 additions and 16 deletions.
29 changes: 13 additions & 16 deletions src/app/map/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,24 +8,21 @@ export default function Map() {
return (
<main className="w-full h-screen flex justify-center items-center flex-col bg-2">
<Border variant="white">
<div className="relative flex flex-col w-full max-w-80 items-center justify-center pt-10 gap-5">
<div className="font-season italic text-2xl">Map</div>
<div className="flex w-full justify-center">
<Image
src={MapImage}
alt="map"
className="w-full aspect-auto"
src={FDLogo}
alt="logo"
className="w-44"
/>
<div className="font-season italic text-2xl text-center p-4 bg-project-fuchsia">
Lorem ipsum dolor sit amet
</div>

<div className="absolute flex -top-16 w-full justify-center">
<Image
src={FDLogo}
alt="logo"
className="w-44"
/>
</div>
</div>
<div className="font-season italic text-2xl mt-6">Map</div>
<Image
src={MapImage}
alt="map"
className="w-full aspect-auto mt-5"
/>
<div className="font-season italic text-2xl text-center p-4 mt-5 bg-project-fuchsia">
Lorem ipsum dolor sit
</div>
</Border>
<div className="absolute top-6 right-4 flex flex-col items-center">
Expand Down

0 comments on commit 1ae1fc9

Please sign in to comment.