Merge branch 'master' into 13764-icons-colors-unification-refactoring
[arvados-workbench2.git] / src / components / attribute / attribute.tsx
index ea35f5bfa1d343277a1956655fab5dce51b642a8..4fb1d110ed1507ebb0863aa295a121b3713cb3a9 100644 (file)
@@ -5,7 +5,7 @@
 import * as React from 'react';
 import Typography from '@material-ui/core/Typography';
 import { StyleRulesCallback, WithStyles, withStyles } from '@material-ui/core/styles';
-import { ArvadosTheme } from 'src/common/custom-theme';
+import { ArvadosTheme } from '../../common/custom-theme';
 
 interface AttributeDataProps {
     label: string;
@@ -57,8 +57,10 @@ const styles: StyleRulesCallback<CssRules> = (theme: ArvadosTheme) => ({
         textTransform: 'capitalize'
     },
     link: {
+        width: '60%',
         color: theme.palette.primary.main,
-        textDecoration: 'none'
+        textDecoration: 'none',
+        overflowWrap: 'break-word'
     }
 });