Skip to content

Commit 7de48c5

Browse files
committed
feat: Add spacing below Back button
1 parent 8c260d4 commit 7de48c5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/app/components/SinglePropertyDetail.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ const SinglePropertyDetail = ({
2222

2323
return (
2424
<div className="w-full p-4">
25-
<Button onClick={() => setSelectedProperty(null)}> Back </Button>
25+
<div className="pb-4">
26+
<Button onClick={() => setSelectedProperty(null)}> Back </Button>
27+
</div>
2628
<div className="bg-white rounded-lg overflow-hidden">
2729
<div className="relative h-48 w-full rounded-lg overflow-hidden">
2830
<Image

0 commit comments

Comments
 (0)