about summary refs log tree commit diff
path: root/src/components/dialogs
diff options
context:
space:
mode:
authorEric Bailey <git@esb.lol>2024-09-23 16:34:59 -0500
committerGitHub <noreply@github.com>2024-09-23 16:34:59 -0500
commite93cbbd56a70ab3fd44866009400c7b3df24286b (patch)
tree891eff6e8fbe8282db3f1ba249b763312a22d2a4 /src/components/dialogs
parente1ee95a7193501fce13d0bbdee57963901635741 (diff)
downloadvoidsky-e93cbbd56a70ab3fd44866009400c7b3df24286b.tar.zst
Don't use flex on inputs (#5458)
Diffstat (limited to 'src/components/dialogs')
-rw-r--r--src/components/dialogs/Embed.tsx22
1 files changed, 12 insertions, 10 deletions
diff --git a/src/components/dialogs/Embed.tsx b/src/components/dialogs/Embed.tsx
index 73ecf6616..ca75b0139 100644
--- a/src/components/dialogs/Embed.tsx
+++ b/src/components/dialogs/Embed.tsx
@@ -106,16 +106,18 @@ function EmbedDialogInner({
       </View>
 
       <View style={[a.flex_row, a.gap_sm]}>
-        <TextField.Root>
-          <TextField.Icon icon={CodeBrackets} />
-          <TextField.Input
-            label={_(msg`Embed HTML code`)}
-            editable={false}
-            selection={{start: 0, end: snippet.length}}
-            value={snippet}
-            style={{}}
-          />
-        </TextField.Root>
+        <View style={[a.flex_1]}>
+          <TextField.Root>
+            <TextField.Icon icon={CodeBrackets} />
+            <TextField.Input
+              label={_(msg`Embed HTML code`)}
+              editable={false}
+              selection={{start: 0, end: snippet.length}}
+              value={snippet}
+              style={{}}
+            />
+          </TextField.Root>
+        </View>
         <Button
           label={_(msg`Copy code`)}
           color="primary"