diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-10-02 09:28:04 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-02 09:28:04 -0700 |
commit | 64410efafeb2ba8d0b8e3e7192520148f81925e1 (patch) | |
tree | 1d3b1676fd9542f22ec77b176bd01baf9e314deb /src/view/com/modals/Modal.web.tsx | |
parent | 72e3763446b43f410f1d914d5965586ebb1c357d (diff) | |
download | voidsky-64410efafeb2ba8d0b8e3e7192520148f81925e1.tar.zst |
Small sizing tweaks to the web modal (#1568)
Diffstat (limited to 'src/view/com/modals/Modal.web.tsx')
-rw-r--r-- | src/view/com/modals/Modal.web.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/view/com/modals/Modal.web.tsx b/src/view/com/modals/Modal.web.tsx index 7548fb806..685d9abe1 100644 --- a/src/view/com/modals/Modal.web.tsx +++ b/src/view/com/modals/Modal.web.tsx @@ -153,11 +153,11 @@ const styles = StyleSheet.create({ justifyContent: 'center', }, container: { - width: 500, + width: 600, // @ts-ignore web only maxWidth: '100vw', // @ts-ignore web only - maxHeight: '100vh', + maxHeight: '90vh', paddingVertical: 20, paddingHorizontal: 24, borderRadius: 8, |