Skip to content

Commit

Permalink
fix: prevent tiny cards from getting squished
Browse files Browse the repository at this point in the history
  • Loading branch information
Draconizations committed Oct 6, 2024
1 parent c156ea1 commit e652cd7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/dash/groups/GroupList.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
/>
{/each}
{:else if list.settings.view.type === ViewType.TINY}
<div class="max-w-96 sm:max-w-none mx-auto px-8 sm:px-0">
<div class="w-full max-w-96 sm:max-w-none mx-auto px-8 sm:px-0">
<div class="w-full justify-start flex flex-wrap">
{#each list.list.paginated as group (group.uuid)}
<GroupTiny {group} asPage={false} {wide} />
Expand Down
2 changes: 1 addition & 1 deletion src/components/dash/members/MemberList.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
/>
{/each}
{:else if list.settings.view.type === ViewType.TINY}
<div class="max-w-96 sm:max-w-none mx-auto px-8 sm:px-0">
<div class="w-full max-w-96 sm:max-w-none mx-auto px-8 sm:px-0">
<div class="w-full justify-start flex flex-wrap">
{#each list.list.paginated as member (member.uuid)}
<MemberTiny {member} asPage={false} {wide} />
Expand Down

0 comments on commit e652cd7

Please sign in to comment.