Skip to content

Commit

Permalink
Fixed Native Failure
Browse files Browse the repository at this point in the history
  • Loading branch information
MuhammadHassan03 committed Sep 13, 2024
1 parent cd89662 commit ab5cc60
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
9 changes: 5 additions & 4 deletions packages/app/components/landing_page/Pricing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ export const Pricing = () => {
</RText>
</View>
<View style={styles.card}>
<View style={{ width: '100%', fontSize: 18, textAlign: 'left' }}>
<RText style={{ width: '100%', fontSize: 18, textAlign: 'left', borderWidth: 1, borderColor: 'white', color: currentTheme.colors.background }}>
Free Access
</View>
<View style={{ width: '100%', fontSize: 25, textAlign: 'left' }}>
</RText>
<RText style={{ width: '100%', fontSize: 25, textAlign: 'left', borderWidth: 1, borderColor: 'white', color: currentTheme.colors.background }}>
$0
</View>
</RText>
<View style={{ width: '100%' }}>
<RButton
style={{
Expand Down Expand Up @@ -100,6 +100,7 @@ const loadStyles = (currentTheme, xs, sm, md) => {

},
card: {
flex: 1,
flexDirection: 'column',
alignItems: 'center',
justifyContent: 'center',
Expand Down
8 changes: 5 additions & 3 deletions packages/app/components/landing_page/landingpage.style.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,12 @@ const loadStyles = (theme) => {
justifyContent: 'center',
},
featureImage: {
zIndex: 100,
zIndex: 2,
width: xs ? '100%' : 'auto',
mixBlendMode: 'multiply',
justifyContent: 'center',
alignItems: 'center',

// filter: "brightness(100) invert(0)",
// width: 259,
// height: 530,
Expand All @@ -58,20 +59,21 @@ const loadStyles = (theme) => {
width: xs || sm || md ? 162 : 215,
height: xs || sm || md ? 340 : 410,
position: 'absolute',
zIndex: '-1',
zIndex: 0,
right: 120,
},
featureCenterImage: {
backgroundColor: 'transparent',
width: xs || sm || md ? 220 : 259,
height: xs || sm || md ? 450 : 530,
zIndex: 1,
},
featureRightImage: {
backgroundColor: 'transparent',
width: xs || sm || md ? 162 : 215,
height: xs || sm || md ? 340 : 410,
position: 'absolute',
zIndex: '-1',
zIndex: 0,
left: 120,
},
overlay: {
Expand Down

0 comments on commit ab5cc60

Please sign in to comment.