Skip to content

Commit

Permalink
test: overwrite weird padding on Android
Browse files Browse the repository at this point in the history
  • Loading branch information
SunnyCloudYang committed Oct 23, 2024
1 parent a540879 commit 23026fa
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions apps/thu-info-app/src/ui/settings/feedback.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,10 @@ const BottomButton = ({
return (
<TouchableOpacity
style={{
backgroundColor: disabled ? colors.themeTransparentPurple : colors.themePurple,
backgroundColor: colors.themePurple,
flex: 1,
borderRadius: 5,
opacity: disabled ? 0.5 : 1,
}}
disabled={disabled}
onPress={(e) => !disabled && onPress(e)}>
Expand Down Expand Up @@ -86,7 +87,7 @@ export const FeedbackScreen = ({navigation}: {navigation: RootNav}) => {
style={{
fontSize: 20,
marginTop: 12,
marginLeft: 12,
marginLeft: 10,
fontWeight: "bold",
color: colors.text,
}}>
Expand Down Expand Up @@ -159,7 +160,10 @@ export const FeedbackScreen = ({navigation}: {navigation: RootNav}) => {
fontSize: 15,
marginVertical: 8,
marginEnd: 8,
padding: 12,
padding: 0,
paddingVertical: 0,
paddingTop: 12,
paddingBottom: 12,
backgroundColor: colors.themeBackground,
color: colors.text,
borderColor: colors.inputBorder,
Expand Down

0 comments on commit 23026fa

Please sign in to comment.