We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 296e710 commit c71fb6dCopy full SHA for c71fb6d
src/pages/Logs.tsx
@@ -35,7 +35,7 @@ function LogsRenderer({ logs }: { logs: Log[] }): ReactElement {
35
if (logs.length === 0) return <ContentCard>No logs...</ContentCard>;
36
return (
37
<div className="flex gap-4 justify-center w-full m-8 grow">
38
- <div className="grow shrink basis-0 min-w-0 flex flex-col gap-2">
+ <div className="grow shrink basis-0 min-w-0 flex flex-col gap-2 max-h-screen overflow-y-auto">
39
{logs.map(log => (
40
<LogRenderer selected={selected === log} log={log} onClick={handleClick} />
41
))}
0 commit comments