diff options
author | Santo Cariotti <santo@dcariotti.me> | 2024-08-30 21:21:17 +0200 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2024-08-30 21:21:17 +0200 |
commit | 509785982a1b4ac9ab145bac90d97be7044228c4 (patch) | |
tree | 2ab074c254f0f88788b103a400ce0e308c044ec4 /components/ParallaxScrollView.tsx | |
parent | 7103a17512b77b816d7daa972b7fc14bdcab5e6b (diff) |
Init alert list page
Diffstat (limited to 'components/ParallaxScrollView.tsx')
-rw-r--r-- | components/ParallaxScrollView.tsx | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/components/ParallaxScrollView.tsx b/components/ParallaxScrollView.tsx index c54cbae..d803ee6 100644 --- a/components/ParallaxScrollView.tsx +++ b/components/ParallaxScrollView.tsx @@ -8,6 +8,7 @@ import Animated, { } from 'react-native-reanimated'; import { ThemedView } from '@/components/ThemedView'; +import { ThemedText } from './ThemedText'; const HEADER_HEIGHT = 250; @@ -23,7 +24,7 @@ export default function ParallaxScrollView({ <ThemedView style={styles.container}> <Animated.ScrollView ref={scrollRef} scrollEventThrottle={16}> <View style={styles.nav}> - <Text style={styles.navText}>CAS4</Text> + <ThemedText type="title">CAS4</ThemedText> </View> <ThemedView style={styles.content}>{children}</ThemedView> </Animated.ScrollView> @@ -36,16 +37,10 @@ const styles = StyleSheet.create({ flex: 1, }, nav: { - backgroundColor: '#fcfcfc', + backgroundColor: 'rgba(10, 10, 10, .5)', paddingTop: 50, padding: 10, }, - navText: { - textAlign: 'center', - fontFamily: 'SpaceMono', - fontSize: 24, - fontWeight: 'bold' - }, header: { height: 250, overflow: 'hidden', |