Skip to content

Commit

Permalink
feat(proxy): show more proxy nodes on larger screen
Browse files Browse the repository at this point in the history
  • Loading branch information
kunish committed Sep 17, 2023
1 parent 4a52947 commit 5277c7b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Collapse.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export const Collapse: ParentComponent<Props> = (props) => {
<div
class={twMerge(
getCollapseClassName(),
'collapse collapse-arrow select-none border-secondary bg-base-200',
'collapse collapse-arrow select-none overflow-visible border-secondary bg-base-200',
)}
>
<div
Expand All @@ -40,7 +40,7 @@ export const Collapse: ParentComponent<Props> = (props) => {
<div
class={twMerge(
getCollapseContentClassName(),
'collapse-content grid grid-cols-2 gap-2 transition-opacity duration-1000',
'collapse-content grid grid-cols-2 gap-2 transition-opacity duration-1000 lg:grid-cols-3 xl:grid-cols-4',
)}
>
<Show when={props.isOpen}>{children(() => props.children)()}</Show>
Expand Down

0 comments on commit 5277c7b

Please sign in to comment.