diff options
author | Brian Kim <brian@tagg.id> | 2021-05-20 16:50:24 -0700 |
---|---|---|
committer | Brian Kim <brian@tagg.id> | 2021-05-20 16:50:24 -0700 |
commit | 0b4cbd6f9d7aa56c0200bd19ea5df4abd6964964 (patch) | |
tree | 0da3383d6d1076307affb4f6465fcddc09a9821c /src/components/taggs | |
parent | 12d2930aa67e0c03aada966d6bb50541730cc656 (diff) |
Fix zIndex draggable placement
Diffstat (limited to 'src/components/taggs')
-rw-r--r-- | src/components/taggs/TaggDraggable.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/taggs/TaggDraggable.tsx b/src/components/taggs/TaggDraggable.tsx index e31f69c2..1ef2e69f 100644 --- a/src/components/taggs/TaggDraggable.tsx +++ b/src/components/taggs/TaggDraggable.tsx @@ -53,7 +53,7 @@ const TaggDraggable: React.FC<TaggDraggableProps> = ( }; return ( - <TouchableWithoutFeedback> + <TouchableWithoutFeedback style={{borderColor: 'red'}}> <View style={styles.container}> <Image style={styles.imageTip} source={uriTip} /> <TouchableOpacity |