Skip to content

Commit

Permalink
adjust to overflow-y-auto
Browse files Browse the repository at this point in the history
  • Loading branch information
selfcontained authored and roboquat committed Dec 5, 2022
1 parent de92a84 commit 80a1a4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/dashboard/src/components/Modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ type ModalBodyProps = {
export const ModalBody = ({ children, hideDivider = false }: ModalBodyProps) => {
return (
<div
className={cn("overflow-scroll border-gray-200 dark:border-gray-800 -mx-6 px-6 ", {
className={cn("overflow-y-auto border-gray-200 dark:border-gray-800 -mx-6 px-6 ", {
"border-t border-b mt-2 py-4": !hideDivider,
})}
>
Expand Down

0 comments on commit 80a1a4f

Please sign in to comment.