This commit is contained in:
Minseo Lee
2024-08-10 18:57:50 +09:00
parent 7afc04194d
commit 51a12b2018
3 changed files with 4 additions and 0 deletions
+1
View File
@@ -193,6 +193,7 @@ export function createInput(Component: typeof TextInput) {
lineHeight: a.text_md.fontSize * 1.1875, lineHeight: a.text_md.fontSize * 1.1875,
textAlignVertical: rest.multiline ? 'top' : undefined, textAlignVertical: rest.multiline ? 'top' : undefined,
minHeight: rest.multiline ? 80 : undefined, minHeight: rest.multiline ? 80 : undefined,
minWidth: 0,
}, },
// fix for autofill styles covering border // fix for autofill styles covering border
web({ web({
+2
View File
@@ -145,6 +145,7 @@ export function LanguageSettingsScreen(_props: Props) {
backgroundColor: pal.viewLight.backgroundColor, backgroundColor: pal.viewLight.backgroundColor,
color: pal.text.color, color: pal.text.color,
fontSize: 14, fontSize: 14,
fontFamily: 'inherit',
letterSpacing: 0.5, letterSpacing: 0.5,
fontWeight: '500', fontWeight: '500',
paddingHorizontal: 14, paddingHorizontal: 14,
@@ -236,6 +237,7 @@ export function LanguageSettingsScreen(_props: Props) {
backgroundColor: pal.viewLight.backgroundColor, backgroundColor: pal.viewLight.backgroundColor,
color: pal.text.color, color: pal.text.color,
fontSize: 14, fontSize: 14,
fontFamily: 'inherit',
letterSpacing: 0.5, letterSpacing: 0.5,
fontWeight: '500', fontWeight: '500',
paddingHorizontal: 14, paddingHorizontal: 14,
+1
View File
@@ -1071,6 +1071,7 @@ const styles = StyleSheet.create({
headerSearchInput: { headerSearchInput: {
flex: 1, flex: 1,
fontSize: 17, fontSize: 17,
minWidth: 0,
}, },
headerCancelBtn: { headerCancelBtn: {
paddingLeft: 10, paddingLeft: 10,