Skip to content

Commit

Permalink
feat(proxies): adjust collapsible grid columns
Browse files Browse the repository at this point in the history
  • Loading branch information
kunish committed Oct 10, 2024
1 parent 401a641 commit 3d1a234
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Collapse.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export const Collapse: ParentComponent<Props> = (props) => {
<div
class={twMerge(
getCollapseContentClassName(),
'collapse-content grid grid-cols-1 gap-2 transition-opacity duration-1000 xl:grid-cols-3 2xl:grid-cols-4',
'collapse-content grid grid-cols-1 gap-2 transition-opacity duration-1000 xl:grid-cols-2 2xl:grid-cols-3',
)}
>
<Show when={props.isOpen}>{children(() => props.children)()}</Show>
Expand Down

0 comments on commit 3d1a234

Please sign in to comment.