Skip to content

Commit

Permalink
fix: style
Browse files Browse the repository at this point in the history
  • Loading branch information
tingyuan committed Sep 29, 2024
1 parent c452c90 commit 25aab5f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
4 changes: 2 additions & 2 deletions src/routes/About/TextAction.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function TextAction(
}>,
) {
return (
<View className="flex-row items-center justify-between mb-2">
<View className="flex-row items-center justify-between">
<Text
className="text-base"
onPress={props.onTextPress}
Expand All @@ -28,7 +28,7 @@ function TextAction(
size="sm"
key={button.text}
loading={!!button.loading}
buttonStyle={button.loading ? { padding: 2.5 } : null}
buttonStyle={tw('h-8')}
onPress={() => {
button.onPress()
}}>
Expand Down
18 changes: 10 additions & 8 deletions src/routes/About/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,16 @@ function About() {
<ScrollView className="p-5">
<Header />
<Divider className="my-4" />
<Version />
<Feedback />
<Backup />
<Collect />
<History />
<Music />
<Statement />
<Divider className="mb-4" />
<View className="gap-2">
<Version />
<Feedback />
<Backup />
<Collect />
<History />
<Music />
<Statement />
</View>
<Divider className="my-4" />
<BlackTags />
<BlackUps />
<SortCate />
Expand Down

0 comments on commit 25aab5f

Please sign in to comment.