1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-02-10 19:41:43 +02:00

Desktop: Fixes #9822: Allow dialogs to scroll on small screens (#9823)

This commit is contained in:
Henry Heino 2024-02-02 14:57:07 -08:00 committed by GitHub
parent 24776ee6ce
commit 43d36f9415
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -11,7 +11,12 @@ const DialogModalLayer = styled.div`
background-color: rgba(0,0,0,0.6); background-color: rgba(0,0,0,0.6);
align-items: flex-start; align-items: flex-start;
justify-content: center; justify-content: center;
overflow: hidden;
overflow: auto;
scrollbar-width: none;
&::-webkit-scrollbar {
display: none;
}
`; `;
const DialogRoot = styled.div` const DialogRoot = styled.div`