From 64410efafeb2ba8d0b8e3e7192520148f81925e1 Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Mon, 2 Oct 2023 09:28:04 -0700 Subject: [PATCH] Small sizing tweaks to the web modal (#1568) --- src/view/com/modals/EditProfile.tsx | 2 +- src/view/com/modals/Modal.web.tsx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/view/com/modals/EditProfile.tsx b/src/view/com/modals/EditProfile.tsx index 3db8d82d80..620aad9fcb 100644 --- a/src/view/com/modals/EditProfile.tsx +++ b/src/view/com/modals/EditProfile.tsx @@ -266,7 +266,7 @@ const styles = StyleSheet.create({ paddingHorizontal: 12, paddingTop: 10, fontSize: 16, - height: 100, + height: 120, textAlignVertical: 'top', }, btn: { diff --git a/src/view/com/modals/Modal.web.tsx b/src/view/com/modals/Modal.web.tsx index 7548fb806b..685d9abe11 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,