X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/c53693847e622ef89ba7d62a93fc7d60dc68e6df..4f1696f1ad1544981a6492071bd168c7dd34f839:/src/views/process-log-panel/process-log-code-snippet.tsx diff --git a/src/views/process-log-panel/process-log-code-snippet.tsx b/src/views/process-log-panel/process-log-code-snippet.tsx index 99388d66a2..d02fc02ce1 100644 --- a/src/views/process-log-panel/process-log-code-snippet.tsx +++ b/src/views/process-log-panel/process-log-code-snippet.tsx @@ -3,10 +3,18 @@ // SPDX-License-Identifier: AGPL-3.0 import * as React from 'react'; -import { MuiThemeProvider, createMuiTheme } from '@material-ui/core/styles'; -import { CodeSnippet, CodeSnippetDataProps } from '~/components/code-snippet/code-snippet'; +import { MuiThemeProvider, createMuiTheme, StyleRulesCallback, withStyles, WithStyles } from '@material-ui/core/styles'; +import { CodeSnippet } from '~/components/code-snippet/code-snippet'; import grey from '@material-ui/core/colors/grey'; +type CssRules = 'codeSnippet'; + +const styles: StyleRulesCallback = () => ({ + codeSnippet: { + maxHeight: '550px', + } +}); + const theme = createMuiTheme({ overrides: { MuiTypography: { @@ -19,13 +27,16 @@ const theme = createMuiTheme({ } }, typography: { - fontFamily: 'VT323' + fontFamily: 'monospace' } }); -type ProcessLogCodeSnippet = CodeSnippetDataProps; +interface ProcessLogCodeSnippetProps { + lines: string[]; +} -export const ProcessLogCodeSnippet = (props: ProcessLogCodeSnippet) => - - - ; \ No newline at end of file +export const ProcessLogCodeSnippet = withStyles(styles)( + (props: ProcessLogCodeSnippetProps & WithStyles) => + + + ); \ No newline at end of file