Skip to content

Commit 8421236

Browse files
author
Dylan Huang
committed
allow for taller logs window
1 parent 535169e commit 8421236

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vite-app/src/components/LogsSection.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ export const LogsSection = observer(({ rolloutId }: LogsSectionProps) => {
121121
return (
122122
<div>
123123
{/* Content - matching MetadataSection container styling */}
124-
<div className="border border-gray-200 p-2 w-[1200px] text-xs bg-white">
124+
<div className="border border-gray-200 p-2 max-w-[1200px] text-xs bg-white">
125125
{/* Log level filter */}
126126
<div className="mb-2 flex items-center gap-2">
127127
<Select
@@ -160,7 +160,7 @@ export const LogsSection = observer(({ rolloutId }: LogsSectionProps) => {
160160
)}
161161

162162
{logs.length > 0 && (
163-
<div className="max-h-80 min-h-4 overflow-auto border border-gray-200">
163+
<div className="max-h-[800px] min-h-4 overflow-auto border border-gray-200">
164164
<div>
165165
{logs.map((log, index) => (
166166
<div

0 commit comments

Comments
 (0)