diff options
author | Paul Frazee <pfrazee@gmail.com> | 2024-01-22 15:52:50 -0800 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2024-01-22 15:52:50 -0800 |
commit | f67812d09a1f66133d85a37d99b799f80e1e2d62 (patch) | |
tree | 09fd5e8d284734f69878a68ba6b97a9ff80f130a /src/view/com/composer/text-input/TextInput.web.tsx | |
parent | eda4dee3abf7fd6f80024df92cda0e0eeba0b5fe (diff) | |
download | voidsky-f67812d09a1f66133d85a37d99b799f80e1e2d62.tar.zst |
Tweak positioning
Diffstat (limited to 'src/view/com/composer/text-input/TextInput.web.tsx')
-rw-r--r-- | src/view/com/composer/text-input/TextInput.web.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/view/com/composer/text-input/TextInput.web.tsx b/src/view/com/composer/text-input/TextInput.web.tsx index 8898ab977..f2012a630 100644 --- a/src/view/com/composer/text-input/TextInput.web.tsx +++ b/src/view/com/composer/text-input/TextInput.web.tsx @@ -283,7 +283,8 @@ const styles = StyleSheet.create({ pointerEvents: 'none', alignItems: 'center', justifyContent: 'center', - position: 'absolute', + // @ts-ignore web only -prf + position: 'fixed', padding: 16, top: 0, bottom: 0, @@ -315,6 +316,7 @@ function getImageFromUri( const type = item.type if (type === 'text/plain') { + console.log('hit') item.getAsString(async itemString => { if (isUriImage(itemString)) { const response = await fetch(itemString) |