diff --git a/site/src/components/Logs/Logs.tsx b/site/src/components/Logs/Logs.tsx index d0103904dd034..4d45a2696b22d 100644 --- a/site/src/components/Logs/Logs.tsx +++ b/site/src/components/Logs/Logs.tsx @@ -21,8 +21,9 @@ export const Logs: FC = ({ lines, className = "" }) => {
{lines.map((line, idx) => (
-
{dayjs(line.time).format(`HH:mm:ss.SSS`)}
-
{line.output}
+ {dayjs(line.time).format(`HH:mm:ss.SSS`)} +      + {line.output}
))}
@@ -42,12 +43,10 @@ const useStyles = makeStyles((theme) => ({ overflowX: "auto", }, line: { - display: "flex", - alignItems: "baseline", + whiteSpace: "nowrap", }, time: { width: theme.spacing(12.5), - marginRight: theme.spacing(3), - flexShrink: 0, + display: "inline-block", }, }))