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 77f876e commit 80be1c2Copy full SHA for 80be1c2
src/app/serial-plotter/page.tsx
@@ -360,8 +360,10 @@ const SerialPlotter = () => {
360
{viewMode !== "plotter" && (
361
<div
362
ref={rawDataRef}
363
- className={`w-full border rounded-xl shadow-lg bg-[#1a1a2e] text-white overflow-auto flex flex-col flex-grow ${viewMode === "both" ? "min-h-[30vh]" : "min-h-[35vh]"}`}
+ className={`w-full border rounded-xl shadow-lg bg-[#1a1a2e] text-white overflow-auto flex flex-col`}
364
+ style={{ height: "35vh", maxHeight: "35vh", minHeight: "35vh" }} // Set fixed height
365
>
366
+
367
{/* Title Bar with Input and Buttons */}
368
<div className="sticky top-0 flex items-center justify-between bg-[#1a1a2e] p-2 z-10">
369
{/* Input Box (Full Width) */}
0 commit comments