diff options
| author | soryu <soryu@soryu.co> | 2026-02-16 19:01:56 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-02-16 19:01:56 +0000 |
| commit | 4bd40f047a6f4703945c6db2811d8feda27241d6 (patch) | |
| tree | b53feed7931309520c0886585487d143fc2957f4 /makima/frontend/src | |
| parent | b3de779d87450033f1e0361144c621a1d5f1dbf8 (diff) | |
| download | soryu-4bd40f047a6f4703945c6db2811d8feda27241d6.tar.gz soryu-4bd40f047a6f4703945c6db2811d8feda27241d6.zip | |
soryu-co/soryu - makima (#66)
* feat: soryu-co/soryu - makima: Fix contracts page scrolling overflow
* WIP: heartbeat checkpoint
* WIP: heartbeat checkpoint
* WIP: heartbeat checkpoint
* WIP: heartbeat checkpoint
Diffstat (limited to 'makima/frontend/src')
| -rw-r--r-- | makima/frontend/src/components/contracts/ContractDetail.tsx | 4 | ||||
| -rw-r--r-- | makima/frontend/src/components/directives/DirectiveDetail.tsx | 2 | ||||
| -rw-r--r-- | makima/frontend/src/routes/contracts.tsx | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/makima/frontend/src/components/contracts/ContractDetail.tsx b/makima/frontend/src/components/contracts/ContractDetail.tsx index e5e65f6..46b2212 100644 --- a/makima/frontend/src/components/contracts/ContractDetail.tsx +++ b/makima/frontend/src/components/contracts/ContractDetail.tsx @@ -102,7 +102,7 @@ export function ContractDetail({ ]; return ( - <div className="panel h-full flex flex-col"> + <div className="panel h-full flex flex-col min-h-0"> {/* Header */} <div className="p-4 border-b border-dashed border-[rgba(117,170,252,0.35)]"> <div className="flex items-center justify-between mb-3"> @@ -224,7 +224,7 @@ export function ContractDetail({ </div> {/* Tab content */} - <div className="flex-1 overflow-y-auto p-4"> + <div className="flex-1 overflow-y-auto p-4 min-h-0"> {activeTab === "overview" && ( <OverviewTab contract={contract} diff --git a/makima/frontend/src/components/directives/DirectiveDetail.tsx b/makima/frontend/src/components/directives/DirectiveDetail.tsx index c8da7a0..c9dac37 100644 --- a/makima/frontend/src/components/directives/DirectiveDetail.tsx +++ b/makima/frontend/src/components/directives/DirectiveDetail.tsx @@ -355,7 +355,7 @@ export function DirectiveDetail({ disabled={pickingUpOrders} className="text-[10px] font-mono text-[#c084fc] hover:text-[#d8b4fe] border border-[rgba(192,132,252,0.3)] rounded px-2 py-1 disabled:opacity-50" > - {pickingUpOrders ? "Picking up..." : "Pick Up Orders"} + {pickingUpOrders ? "Planning..." : "Plan Orders"} </button> <button type="button" diff --git a/makima/frontend/src/routes/contracts.tsx b/makima/frontend/src/routes/contracts.tsx index 6d838ab..7046f66 100644 --- a/makima/frontend/src/routes/contracts.tsx +++ b/makima/frontend/src/routes/contracts.tsx @@ -542,7 +542,7 @@ function ContractsPageContent() { </div> {/* Right: Detail or Create */} - <div className="flex-1 overflow-hidden flex flex-col"> + <div className="flex-1 overflow-hidden flex flex-col min-h-0"> {error && ( <div className="p-3 bg-red-400/10 border border-red-400/30 text-red-400 font-mono text-sm"> {error} |
