Skip to content

Commit

Permalink
Small changes to shelf modal
Browse files Browse the repository at this point in the history
  • Loading branch information
sliu-1 committed Feb 24, 2024
1 parent 2d09a67 commit f62df50
Showing 1 changed file with 23 additions and 16 deletions.
39 changes: 23 additions & 16 deletions mobile/Components/ShelfModal/ShelfModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,27 +30,34 @@ const ShelfModal = ({
];

return (
<View style={{
justifyContent: "center",
alignItems: "center",
backgroundColor: "white",
width: "100%",
height: "100%",
borderTopLeftRadius: 20,
borderTopRightRadius: 20,
}}>
<TouchableWithoutFeedback onPress={Keyboard.dismiss} accessible={false} >
<View style={{
justifyContent: "center",
alignItems: "center",
backgroundColor: "white",
width: "100%",
height: "100%",
borderTopLeftRadius: 20,
borderTopRightRadius: 20,
}}
>
<View
style={{
backgroundColor: "#D3D3D3",
height: 7,
width: 70,
width: "100%",
position: "absolute",
borderRadius: 5,
alignSelf: "center",
top: 10,
}}
/>
}}>
<View
style={{
backgroundColor: "#D3D3D3",
height: 7,
width: 70,
borderRadius: 5,
alignSelf: "center",
}}
/>
</View>
</TouchableWithoutFeedback>
<TouchableWithoutFeedback onPress={Keyboard.dismiss} accessible={false} >

<View style={{
Expand Down

0 comments on commit f62df50

Please sign in to comment.