use correct font in all inputs

This commit is contained in:
ammarahm-ed
2021-10-26 11:07:37 +05:00
parent 609e2095a0
commit 2a9a6e1783
3 changed files with 4 additions and 3 deletions

View File

@@ -263,7 +263,7 @@ const MoveNoteComponent = ({close, note, setNote}) => {
borderRadius: 5,
minHeight: 45,
fontSize: SIZE.md,
//fontFamily: "sans-serif",
fontFamily: 'OpenSans-Regular',
padding: pv - 2,
},
]}
@@ -408,6 +408,7 @@ const MoveNoteComponent = ({close, note, setNote}) => {
height: 40,
fontSize: SIZE.sm,
padding: pv - 2,
fontFamily: 'OpenSans-Regular',
},
]}
placeholder="Add a topic"

View File

@@ -42,7 +42,6 @@ export const SearchInput = props => {
<TextInput
ref={inputRef}
style={{
fontWeight: 'bold',
color: colors.pri,
fontSize: SIZE.xl,
flexGrow: 1,
@@ -51,6 +50,7 @@ export const SearchInput = props => {
paddingVertical: 0,
paddingHorizontal: 0,
margin: 0,
fontFamily: 'OpenSans-SemiBold',
}}
returnKeyLabel="Search"
returnKeyType="search"

View File

@@ -62,7 +62,7 @@ export const EditorTitle = () => {
<TextInput
defaultValue={title}
style={{
fontWeight:'bold',
fontFamily: 'OpenSans-SemiBold',
fontSize: SIZE.xl,
color: colors.heading,
maxWidth: '100%',