From ce5115a2abd2ddc7140eb3037274b2c5bb3ff10a Mon Sep 17 00:00:00 2001 From: Mo Gorhom Date: Sat, 21 May 2022 15:35:34 +0100 Subject: [PATCH] fix: added a fixed position for the container on web --- src/components/bottomSheetContainer/styles.web.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/components/bottomSheetContainer/styles.web.ts diff --git a/src/components/bottomSheetContainer/styles.web.ts b/src/components/bottomSheetContainer/styles.web.ts new file mode 100644 index 000000000..086ed0d0c --- /dev/null +++ b/src/components/bottomSheetContainer/styles.web.ts @@ -0,0 +1,12 @@ +import { StyleSheet } from 'react-native'; + +export const styles = StyleSheet.create({ + container: { + // @ts-ignore + position: 'fixed', + left: 0, + right: 0, + bottom: 0, + top: 0, + }, +});