Skip to content

Commit 1ec3813

Browse files
authored
Merge pull request #129 from Open-STEM/kq-bugs
Addressed issue #120
2 parents 703920a + 328189f commit 1ec3813

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/dialogs/dialog.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const Dialog = forwardRef<HTMLDialogElement, DialogProps>((dlgProps, ref) => {
1111
<dialog
1212
style={{zIndex: 1000, position: 'fixed', top: 0, left: 0, right: 0, bottom: 0}}
1313
open={dlgProps.isOpen}
14-
className="rounded-md shadow-md border-shark-400 backdrop:bg-mountain-mist-500 backdrop:opacity-40 dark:border dark:border-shark-600 dark:bg-shark-950 transition-all"
14+
className="rounded-md shadow-md border-shark-400 backdrop:bg-mountain-mist-500 backdrop:opacity-40 dark:border dark:border-shark-600 dark:bg-shark-950 transition-all overflow-hidden"
1515
ref={ref}
1616
onClick={(e) => {
1717
if (e.currentTarget === e.target) {

0 commit comments

Comments
 (0)