diff --git a/src/Tools/_framework/Paths/PortfolioActivityViewer.jsx b/src/Tools/_framework/Paths/PortfolioActivityViewer.jsx index 83781daeb6..aa1c08020f 100644 --- a/src/Tools/_framework/Paths/PortfolioActivityViewer.jsx +++ b/src/Tools/_framework/Paths/PortfolioActivityViewer.jsx @@ -99,14 +99,26 @@ const HeaderSectionRight = styled.div` display: flex; justify-content: flex-end; ` -const Label = styled.span` +const Label = styled.div` font-size: 1.4em; font-weight: bold; + max-width: 500px; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; ` const AvatarLink = styled(Link)` text-decoration: none; color: black; + position: relative; +` + +const Byline = styled.small` + position: absolute; + left: 36px; + top: 8px; + width: 400px; ` export function PortfolioActivityViewer() { @@ -146,7 +158,7 @@ export function PortfolioActivityViewer() {
- By {fullName} + By {fullName}