Commit 942211eb authored by Justin Domingue's avatar Justin Domingue Committed by GitHub

fix: typos in modal css (#1911)

* allow modal scrolling on dekstop

* removed quote and fixed typo
parent 6589c418
......@@ -30,7 +30,7 @@ const StyledDialogContent = styled(({ minHeight, maxHeight, mobile, isOpen, ...r
)).attrs({
'aria-label': 'dialog',
})`
overflow-y: 'scrol';
overflow-y: scroll;
&[data-reach-dialog-content] {
margin: 0 0 2rem 0;
......@@ -39,7 +39,7 @@ const StyledDialogContent = styled(({ minHeight, maxHeight, mobile, isOpen, ...r
box-shadow: 0 4px 8px 0 ${({ theme }) => transparentize(0.95, theme.shadow1)};
padding: 0px;
width: 50vw;
overflow-y: 'scroll';
overflow-y: scroll;
overflow-x: hidden;
align-self: ${({ mobile }) => (mobile ? 'flex-end' : 'center')};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment