Skip to content

Commit

Permalink
Fix modal border
Browse files Browse the repository at this point in the history
  • Loading branch information
fjsj committed Feb 4, 2025
1 parent c19a9ea commit d506dda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/Modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export function Modal({ isOpen, onClose, children }: ModalProps) {
style={{ paddingTop: insets.top }}
>
<Pressable className="absolute inset-0" onPress={onClose} />
<View className="mx-4 overflow-hidden rounded-2xl bg-background-0 shadow-hard-5">
<View className="mx-4 overflow-hidden rounded-2xl border border-outline-100 bg-background-0 shadow-hard-5">
{children}
</View>
</View>
Expand Down

0 comments on commit d506dda

Please sign in to comment.