X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/43551086cc04bb37a2b1dc6c8ec24af44f2acf8d..8d374520f28b507e8934d57be46374044fb93e2f:/src/views/process-panel/process-details-card.tsx diff --git a/src/views/process-panel/process-details-card.tsx b/src/views/process-panel/process-details-card.tsx index 18610781..d3349c3a 100644 --- a/src/views/process-panel/process-details-card.tsx +++ b/src/views/process-panel/process-details-card.tsx @@ -19,12 +19,16 @@ import { Process } from 'store/processes/process'; import { MPVPanelProps } from 'components/multi-panel-view/multi-panel-view'; import { ProcessDetailsAttributes } from './process-details-attributes'; -type CssRules = 'card' | 'content' | 'title'; +type CssRules = 'card' | 'content' | 'title' | 'header'; const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ card: { height: '100%' }, + header: { + paddingTop: theme.spacing.unit, + paddingBottom: theme.spacing.unit, + }, content: { '&:last-child': { paddingBottom: theme.spacing.unit * 2, @@ -46,6 +50,7 @@ export const ProcessDetailsCard = withStyles(styles)( ({ classes, process, doHidePanel, panelName }: ProcessDetailsCardProps) => { return