diff options
author | George Rusu <george@tagg.id> | 2021-05-20 12:18:16 -0700 |
---|---|---|
committer | George Rusu <george@tagg.id> | 2021-05-20 12:18:16 -0700 |
commit | 74734ecde9d26e0d08a62574f41dc7174572467d (patch) | |
tree | b7c9b1c8f68f50a0d764151f8233d0db23e156e1 /src/components/common/Draggable.tsx | |
parent | afc117ccaf5127c68e6dd3088bbf11238de615f3 (diff) |
Fix styling for tip,container
Diffstat (limited to 'src/components/common/Draggable.tsx')
-rw-r--r-- | src/components/common/Draggable.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/components/common/Draggable.tsx b/src/components/common/Draggable.tsx index 347d2121..409ca6de 100644 --- a/src/components/common/Draggable.tsx +++ b/src/components/common/Draggable.tsx @@ -211,12 +211,14 @@ export default function Draggable(props: IProps) { const positionCss: StyleProp<ViewStyle> = React.useMemo(() => { const Window = Dimensions.get('window'); + return { position: 'absolute', top: 0, left: 0, width: Window.width, height: Window.height, + zIndex: z, }; }, []); |