From 7a0f8f365f81f825b71c93f40e48eb4fb235ecd2 Mon Sep 17 00:00:00 2001 From: ali asaria <aliasaria@users.noreply.github.com> Date: Mon, 3 Mar 2025 16:46:45 -0500 Subject: [PATCH] fix/scroll-gpu-card --- src/renderer/components/Computer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer/components/Computer.tsx b/src/renderer/components/Computer.tsx index 942557f5..d575250c 100644 --- a/src/renderer/components/Computer.tsx +++ b/src/renderer/components/Computer.tsx @@ -46,7 +46,7 @@ import { FaPython } from 'react-icons/fa'; function ComputerCard({ children, title, description = '', chip = '', icon }) { return ( - <Card variant="soft"> + <Card variant="soft" sx={{ maxHeight: '400px', overflowY: 'auto' }}> <CardContent> <Typography level="title-lg" startDecorator={icon}> {title} -- GitLab