fix: project dropdown

This commit is contained in:
2025-11-03 14:44:19 +01:00
parent 4009b2c6d8
commit 74053b695a
@@ -324,7 +324,12 @@ const ProjectDropDown = ({
{isOpen && triggerWindowLayout ? (
<Portal>
<View style={styles.portalContainer}>
<Pressable style={styles.backdrop} onPress={closeDropdown} />
<Pressable style={styles.backdrop} onPress={closeDropdown}>
<ThemedBlurView
pointerEvents="none"
style={styles.backdropBlur}
/>
</Pressable>
<Animated.View
pointerEvents="auto"
style={[
@@ -538,6 +543,9 @@ const styles = StyleSheet.create({
zIndex: 1,
backgroundColor: "transparent",
},
backdropBlur: {
...StyleSheet.absoluteFillObject,
},
projectRowPressable: {
flexDirection: "row",
alignItems: "center",