Skip to content

Commit

Permalink
Change output filenames text color
Browse files Browse the repository at this point in the history
  • Loading branch information
jtklein committed Apr 14, 2021
1 parent 0bf4d9b commit 66e3484
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions src/app/Output.js
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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 }) => {
Expand Down

0 comments on commit 66e3484

Please sign in to comment.