From 66e3484fd260fd9a303286f48d977839aeae574e Mon Sep 17 00:00:00 2001 From: Johannes Klein Date: Wed, 14 Apr 2021 11:11:56 +0200 Subject: [PATCH] Change output filenames text color --- src/app/Output.js | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/src/app/Output.js b/src/app/Output.js index 829b3db5..49ce5ce3 100644 --- a/src/app/Output.js +++ b/src/app/Output.js @@ -9,7 +9,7 @@ import { Link, Typography } from '@material-ui/core'; import FileIcon from '@material-ui/icons/InsertDriveFileSharp'; import { join } from 'path'; -const useStyles = makeStyles(theme => ({ +const useStyles = makeStyles((theme) => ({ Output: { width: '100%', padding: '10px', @@ -18,23 +18,22 @@ const useStyles = makeStyles(theme => ({ width: '100%', '& > *:not(:first-child)': { marginTop: theme.spacing(3), - } - }, - formItem: { + }, }, + formItem: {}, result: { // maxHeight: 200, // overflowY: 'auto', }, resultFilenameRow: { - color: '#666', + color: theme.palette.primary.contrastText, display: 'flex', alignItems: 'flex-end', cursor: 'pointer', }, resultFilename: { - color: '#ccc', - } + color: theme.palette.primary.contrastText, + }, })); const Output = ({ run }) => {