Skip to content

Commit a4cbaef

Browse files
committed
Add padding to images grid in gallery
for improved spacing and visual appearance.
1 parent 10cae0a commit a4cbaef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/src/components/Media/ChronologicalGallery.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ export const ChronologicalGallery = ({
148148
</div>
149149

150150
{/* Images Grid */}
151-
<div className="grid grid-cols-[repeat(auto-fill,_minmax(224px,_1fr))] gap-4">
151+
<div className="grid grid-cols-[repeat(auto-fill,_minmax(224px,_1fr))] gap-4 p-2">
152152
{imgs.map((img) => {
153153
const reduxIndex = imageIndexMap.get(img.id) ?? -1;
154154

0 commit comments

Comments
 (0)