fix: Blur obscuring buttons on Android

This commit is contained in:
Lei Nelissen
2022-11-12 17:27:04 +01:00
parent f50e5914ec
commit e0493c4a55

View File

@@ -10,6 +10,7 @@ const Container = styled.View<{ size: number }>`
width: ${(props) => props.size}px;
height: ${(props) => props.size}px;
position: relative;
z-index: 0;
`;
const BlurContainer = styled(Canvas)<{ size: number, offset: number }>`