Skip to content

Commit

Permalink
ui: padding to card side-pannel
Browse files Browse the repository at this point in the history
  • Loading branch information
nezz0746 committed Nov 13, 2023
1 parent 877ca8a commit 9d950e2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion apps/web/components/Map/Map.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const AppMap = () => {
interactiveLayerIds={["data"]}
mapStyle="mapbox://styles/nezz0746/closnc6ke00qa01nz5uvf7yad"
>
<div className="bg-white flex flex-row gap-2 items-center p-2 absolute top-[6px] left-[6px] border">
<div className="bg-white flex flex-row gap-2 items-center p-2 absolute top-3 left-3 border">
<p className="font-display font-bold tracking-tight text-xl">
Ensemble
</p>
Expand Down
6 changes: 3 additions & 3 deletions apps/web/components/SidePannel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ const SidePannel = () => {
<div className="flex flex-row justify-center items-center text-center">
{position.precision >= 5 && (
<p className="text-sm text-warning font-display">
Warning: you're about to mint your location with high precision.
Make sure you use a public account you're confortable sharing
precise location with.
Warning: you&apos;re about to mint your location with high
precision. Make sure you use a public account you&apos;re
confortable sharing precise location with.
</p>
)}
</div>
Expand Down
2 changes: 1 addition & 1 deletion apps/web/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const Home: NextPage = () => {
<div className="h-full flex-grow overflow-hidden border shadow-lg">
<AppMap />
</div>
<div className="h-full flex flex-col justify-between w-96 p-2 overflow-hidden border shadow-lg">
<div className="h-full flex flex-col justify-between w-96 p-4 overflow-hidden border shadow-lg">
<SidePannel />
</div>
</div>
Expand Down

0 comments on commit 9d950e2

Please sign in to comment.