Skip to content

Commit

Permalink
Larger autocomplete text and divider
Browse files Browse the repository at this point in the history
  • Loading branch information
joel-jeremy committed Nov 18, 2023
1 parent 21ff023 commit b1bbbcf
Showing 1 changed file with 18 additions and 8 deletions.
26 changes: 18 additions & 8 deletions packages/desktop-client/src/components/modals/EditField.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export default function EditField({ modalProps, name, onSubmit }) {
let label, editor, minWidth;
let inputStyle = {
':focus': { boxShadow: 0 },
...(isNarrowWidth && { fontSize: 20 }),
...(isNarrowWidth && { fontSize: 25 }),
};
let autocompleteProps = {
inputProps: { style: inputStyle },
Expand Down Expand Up @@ -101,7 +101,7 @@ export default function EditField({ modalProps, name, onSubmit }) {
{...props}
style={{
...styles.largeText,
color: theme.tableTextLight,
color: theme.tableHeaderText,
paddingTop: 10,
paddingBottom: 10,
}}
Expand All @@ -111,9 +111,12 @@ export default function EditField({ modalProps, name, onSubmit }) {
<AccountItem
{...props}
style={{
...styles.mediumText,
...styles.largeText,
fontWeight: 450,
paddingTop: 10,
paddingBottom: 10,
borderRadius: 0,
borderTop: `1px solid ${theme.pillBorder}`,
}}
/>
)}
Expand Down Expand Up @@ -147,7 +150,7 @@ export default function EditField({ modalProps, name, onSubmit }) {
{...props}
style={{
...styles.largeText,
color: theme.tableTextLight,
color: theme.tableHeaderText,
paddingTop: 10,
paddingBottom: 10,
}}
Expand All @@ -161,7 +164,8 @@ export default function EditField({ modalProps, name, onSubmit }) {
height: 12,
}}
style={{
...styles.mediumText,
...styles.largeText,
fontWeight: 450,
paddingTop: 5,
paddingBottom: 5,
}}
Expand All @@ -171,9 +175,12 @@ export default function EditField({ modalProps, name, onSubmit }) {
<PayeeItem
{...props}
style={{
...styles.mediumText,
...styles.largeText,
fontWeight: 450,
paddingTop: 10,
paddingBottom: 10,
borderRadius: 0,
borderTop: `1px solid ${theme.pillBorder}`,
}}
/>
)}
Expand Down Expand Up @@ -212,7 +219,7 @@ export default function EditField({ modalProps, name, onSubmit }) {
{...props}
style={{
...styles.largeText,
color: theme.tableTextLight,
color: theme.tableHeaderText,
paddingTop: 10,
paddingBottom: 10,
}}
Expand All @@ -222,9 +229,12 @@ export default function EditField({ modalProps, name, onSubmit }) {
<CategoryItem
{...props}
style={{
...styles.mediumText,
...styles.largeText,
fontWeight: 450,
paddingTop: 10,
paddingBottom: 10,
borderRadius: 0,
borderTop: `1px solid ${theme.pillBorder}`,
}}
/>
)}
Expand Down

0 comments on commit b1bbbcf

Please sign in to comment.