Skip to content

Commit

Permalink
Merge pull request #54 from jinsley8/fix/interaction-only-sizing
Browse files Browse the repository at this point in the history
fix: collapse container height when appearance set to interaction-only
  • Loading branch information
marsidev authored Feb 16, 2024
2 parents fbfdd57 + c2cf5bf commit 3719e0f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/lib/src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,8 @@ export const CONTAINER_STYLE_SET: ContainerSizeSet = {
},
interactionOnly: {
width: 'fit-content',
height: 'auto'
height: 'auto',
display: 'flex'
}
}

Expand Down

0 comments on commit 3719e0f

Please sign in to comment.