diff --git a/new-lamassu-admin/src/components/editableTable/Row.styles.js b/new-lamassu-admin/src/components/editableTable/Row.styles.js index ef393f1a..880befc8 100644 --- a/new-lamassu-admin/src/components/editableTable/Row.styles.js +++ b/new-lamassu-admin/src/components/editableTable/Row.styles.js @@ -23,7 +23,8 @@ export default { } }, suffix: { - marginLeft: 7 + marginLeft: 7, + fontSize: '12px' }, size: ({ size }) => bySize(size), bold diff --git a/new-lamassu-admin/src/pages/Cashout/helper.js b/new-lamassu-admin/src/pages/Cashout/helper.js index 314985c7..61db2dd6 100644 --- a/new-lamassu-admin/src/pages/Cashout/helper.js +++ b/new-lamassu-admin/src/pages/Cashout/helper.js @@ -21,6 +21,12 @@ const DenominationsSchema = Yup.object().shape({ .max(currencyMax) }) +const boldStyle = () => { + return { + fontWeight: 'bold' + } +} + const getElements = (machines, { fiatCurrency } = {}) => { return [ { @@ -34,7 +40,6 @@ const getElements = (machines, { fiatCurrency } = {}) => { { name: 'top', header: 'Cassette 1 (Top)', - size: 'sm', stripe: true, width: 200, textAlign: 'right', @@ -42,12 +47,12 @@ const getElements = (machines, { fiatCurrency } = {}) => { inputProps: { decimalPlaces: 0 }, - suffix: fiatCurrency + suffix: fiatCurrency, + textStyle: boldStyle }, { name: 'bottom', header: 'Cassette 2 (Bottom)', - size: 'sm', stripe: true, textAlign: 'right', width: 200, @@ -55,12 +60,12 @@ const getElements = (machines, { fiatCurrency } = {}) => { inputProps: { decimalPlaces: 0 }, - suffix: fiatCurrency + suffix: fiatCurrency, + textStyle: boldStyle }, { name: 'zeroConfLimit', header: '0-conf Limit', - size: 'sm', stripe: true, textAlign: 'right', width: 200, @@ -68,7 +73,8 @@ const getElements = (machines, { fiatCurrency } = {}) => { inputProps: { decimalPlaces: 0 }, - suffix: fiatCurrency + suffix: fiatCurrency, + textStyle: boldStyle } ] }