X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/df1ebc0e3184afd3fb66414651fc1aec713928bf..c08ec9f2612ffa2ceef5405d357e5c5b8cb608c9:/services/workbench2/src/components/details-attribute/details-attribute.tsx diff --git a/services/workbench2/src/components/details-attribute/details-attribute.tsx b/services/workbench2/src/components/details-attribute/details-attribute.tsx index 92d31b0b8e..d965b60f5b 100644 --- a/services/workbench2/src/components/details-attribute/details-attribute.tsx +++ b/services/workbench2/src/components/details-attribute/details-attribute.tsx @@ -25,7 +25,8 @@ const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ label: { boxSizing: 'border-box', color: theme.palette.grey["600"], - width: '100%' + width: '100%', + marginTop: "0.4em", }, value: { boxSizing: 'border-box', @@ -115,7 +116,7 @@ interface DetailsAttributeComponentProps { export const DetailsAttributeComponent = withStyles(styles)( (props: DetailsAttributeDataProps & WithStyles & DetailsAttributeComponentProps) => - + {props.label} } ); -