Skip to content

Commit

Permalink
Fix(web): Use correct overflow CSS variable in ModalDialog #DS-939
Browse files Browse the repository at this point in the history
  • Loading branch information
crishpeen committed Apr 19, 2024
1 parent c318448 commit 2788887
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/web/src/scss/components/Modal/_ModalDialog.scss
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
margin-top: var(--modal-top);
margin-bottom: var(--modal-bottom);
overflow-x: var(--modal-body-overflow-x, hidden);
overflow-y: var(--modal-body-overflow-x, auto);
overflow-y: var(--modal-body-overflow-y, auto);
color: theme.$dialog-text-color;
background-color: theme.$dialog-background-color;
box-shadow: theme.$dialog-shadow;
Expand Down

0 comments on commit 2788887

Please sign in to comment.