about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2023-10-02 09:28:04 -0700
committerGitHub <noreply@github.com>2023-10-02 09:28:04 -0700
commit64410efafeb2ba8d0b8e3e7192520148f81925e1 (patch)
tree1d3b1676fd9542f22ec77b176bd01baf9e314deb
parent72e3763446b43f410f1d914d5965586ebb1c357d (diff)
downloadvoidsky-64410efafeb2ba8d0b8e3e7192520148f81925e1.tar.zst
Small sizing tweaks to the web modal (#1568)
-rw-r--r--src/view/com/modals/EditProfile.tsx2
-rw-r--r--src/view/com/modals/Modal.web.tsx4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/view/com/modals/EditProfile.tsx b/src/view/com/modals/EditProfile.tsx
index 3db8d82d8..620aad9fc 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 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,