From f36c9565362b741c58672204fe0c155252affe28 Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Tue, 24 Jan 2023 13:00:11 -0600 Subject: Resolve all remaining lint issues (#88) * Rework 'navIdx' variables from number arrays to strings to avoid equality-check failures in react hooks * Resolve all remaining lint issues * Fix tests * Use node v18 in gh action test --- src/view/com/onboard/FeatureExplainer.tsx | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) (limited to 'src/view/com/onboard/FeatureExplainer.tsx') diff --git a/src/view/com/onboard/FeatureExplainer.tsx b/src/view/com/onboard/FeatureExplainer.tsx index 78ace5189..03e050883 100644 --- a/src/view/com/onboard/FeatureExplainer.tsx +++ b/src/view/com/onboard/FeatureExplainer.tsx @@ -19,14 +19,13 @@ import {TABS_ENABLED} from '../../../build-flags' const Intro = () => ( - Welcome to Bluesky + style={[styles.explainerHeading, s.normal, styles.explainerHeadingIntro]}> + Welcome to{' '} + + Bluesky + - + This is an early beta. Your feedback is appreciated! @@ -161,11 +160,18 @@ const styles = StyleSheet.create({ textAlign: 'center', marginBottom: 16, }, + explainerHeadingIntro: { + lineHeight: 60, + paddingTop: 50, + paddingBottom: 50, + }, + explainerHeadingBrand: {fontSize: 56}, explainerDesc: { fontSize: 18, textAlign: 'center', marginBottom: 16, }, + explainerDescIntro: {fontSize: 24}, explainerImg: { resizeMode: 'contain', maxWidth: '100%', -- cgit 1.4.1