Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/components/ui/dev/service-logcat/ServiceLogcat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ export function ServiceLogcat({ logs }: ServiceLogcatProps) {
};

return (
<div>
<div className="flex h-full min-h-0 flex-col">
<div className="flex items-center gap-2 mb-2">
<SectionLabel>Logcat</SectionLabel>
<button
Expand Down Expand Up @@ -187,11 +187,11 @@ export function ServiceLogcat({ logs }: ServiceLogcatProps) {
/>
</div>

<Surface className="overflow-hidden">
<Surface className="overflow-hidden flex-1 min-h-0">
<div
ref={scrollRef}
onScroll={onScroll}
className="max-h-80 overflow-y-auto p-3 font-mono text-xs"
className="h-full overflow-y-auto p-3 font-mono text-xs"
>
{filtered.length === 0 ? (
<p className="text-on-surface-variant/50 py-6 text-center">No matching log entries.</p>
Expand Down
Loading