Skip to content

Commit e6a96e8

Browse files
committed
feat: add new intro page
1 parent f314806 commit e6a96e8

File tree

22 files changed

+221
-295
lines changed

22 files changed

+221
-295
lines changed

ios/Podfile.lock

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -228,6 +228,8 @@ PODS:
228228
- React-Core
229229
- react-native-netinfo (4.7.0):
230230
- React
231+
- react-native-orientation-locker (1.5.0):
232+
- React-Core
231233
- react-native-randombytes (3.6.1):
232234
- React-Core
233235
- react-native-safe-area-context (2.0.0):
@@ -238,7 +240,7 @@ PODS:
238240
- React
239241
- react-native-status (1.0.0):
240242
- React
241-
- react-native-status-keycard (2.5.38):
243+
- react-native-status-keycard (2.5.39):
242244
- Keycard
243245
- React
244246
- react-native-webview (11.16.0):
@@ -433,6 +435,7 @@ DEPENDENCIES:
433435
- react-native-lottie-splash-screen (from `../node_modules/react-native-lottie-splash-screen`)
434436
- react-native-mail (from `../node_modules/react-native-mail`)
435437
- "react-native-netinfo (from `../node_modules/@react-native-community/netinfo`)"
438+
- react-native-orientation-locker (from `../node_modules/react-native-orientation-locker`)
436439
- react-native-randombytes (from `../node_modules/react-native-randombytes`)
437440
- react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`)
438441
- react-native-shake (from `../node_modules/react-native-shake`)
@@ -545,6 +548,8 @@ EXTERNAL SOURCES:
545548
:path: "../node_modules/react-native-mail"
546549
react-native-netinfo:
547550
:path: "../node_modules/@react-native-community/netinfo"
551+
react-native-orientation-locker:
552+
:path: "../node_modules/react-native-orientation-locker"
548553
react-native-randombytes:
549554
:path: "../node_modules/react-native-randombytes"
550555
react-native-safe-area-context:
@@ -666,12 +671,13 @@ SPEC CHECKSUMS:
666671
react-native-lottie-splash-screen: 068688c15dd478301fda00f8d87d7fb7d5b9a93e
667672
react-native-mail: 8fdcd3aef007c33a6877a18eb4cf7447a1d4ce4a
668673
react-native-netinfo: ddaca8bbb9e6e914b1a23787ccb879bc642931c9
674+
react-native-orientation-locker: 851f6510d8046ea2f14aa169b1e01fcd309a94ba
669675
react-native-randombytes: 421f1c7d48c0af8dbcd471b0324393ebf8fe7846
670676
react-native-safe-area-context: 60f654e00b6cc416573f6d5dbfce3839958eb57a
671677
react-native-shake: de052eaa3eadc4a326b8ddd7ac80c06e8d84528c
672678
react-native-slider: 12bd76d3d568c9c5500825db54123d44b48e4ad4
673679
react-native-status: 21f75d492fd311dc111303da38a7a2b23a8a8466
674-
react-native-status-keycard: f60ca57d789aad6875c64ece81ab06ef0609e0d3
680+
react-native-status-keycard: f1c1227b2d5984c10fb44db68e4bfd2937f31e98
675681
react-native-webview: 28a8636d97ee641f2ee8f20492d7a6c269c1d703
676682
React-RCTActionSheet: e911b99f0d6fa7711ffc2f62d236b12a32771835
677683
React-RCTAnimation: ad8b853170a059faf31d6add34f67d22391bbe01
1.12 MB
Loading
2.14 MB
Loading
1.24 MB
Loading
2.4 MB
Loading
788 KB
Loading
1.47 MB
Loading

src/quo2/components/drawers/drawer_buttons/style.cljs

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,24 @@
44
(def outer-container {:height 216})
55

66
(def top-card
7-
{:flex 1
8-
:padding-vertical 12
9-
:padding-horizontal 20
10-
:border-radius 20
11-
:background-color colors/neutral-80})
7+
{:flex 1
8+
:padding-vertical 12
9+
:padding-horizontal 20
10+
:border-top-left-radius 20
11+
:border-top-right-radius 20
12+
:background-color colors/neutral-80})
1213

1314
(def bottom-card
14-
{:position :absolute
15-
:top 80
16-
:left 0
17-
:right 0
18-
:bottom 0
19-
:padding-vertical 12
20-
:padding-horizontal 20
21-
:border-radius 20
22-
:background-color (colors/alpha colors/white 0.05)})
15+
{:position :absolute
16+
:top 80
17+
:left 0
18+
:right 0
19+
:bottom 0
20+
:padding-vertical 12
21+
:padding-horizontal 20
22+
:border-top-left-radius 20
23+
:border-top-right-radius 20
24+
:background-color (colors/alpha colors/white 0.05)})
2325

2426
(def bottom-container
2527
{:flex-direction :row

0 commit comments

Comments
 (0)