Skip to content

Commit

Permalink
fix: increase size of photo deck in PhotoGroup component
Browse files Browse the repository at this point in the history
  • Loading branch information
johnbchron committed Apr 10, 2024
1 parent 307782f commit e4c4609
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion crates/site-app/src/components/photo_group.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,10 @@ pub fn PhotoGroup(
"col-start-1 col-span-1 row-start-1 flex flex-col justify-center xs:px-4 {adjusted_for_action}",
adjusted_for_action = if !read_only { "row-span-1 sm:row-span-2" } else { "row-span-2" },
)}>
<crate::components::photo_deck::PhotoDeck ids={group.photos.clone()} />
<crate::components::photo_deck::PhotoDeck
ids={group.photos.clone()}
size=crate::components::photo::PhotoSize::FitsWithinSquare(200)
/>
</div>
<div class="col-start-2 col-span-1 row-start-1 row-span-1 flex flex-row justify-between gap-4">
{ status_element }
Expand Down

0 comments on commit e4c4609

Please sign in to comment.