Skip to content

Commit bc09581

Browse files
committed
manchette: remove min-height
Signed-off-by: Egor Berezovskiy <[email protected]>
1 parent c86d291 commit bc09581

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

ui-manchette/src/components/Manchette.tsx

+2-5
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,10 @@ const Manchette = ({
3030
isProportional = true,
3131
toggleMode,
3232
children,
33-
height,
33+
height = INITIAL_OP_LIST_HEIGHT,
3434
}: ManchetteProps) => (
3535
<div className="manchette-container">
36-
<div
37-
className="bg-white-100 border-r border-grey-30"
38-
style={{ minHeight: `${INITIAL_OP_LIST_HEIGHT}px`, height }}
39-
>
36+
<div className="bg-white-100 border-r border-grey-30" style={{ height: `${height}px` }}>
4037
<WaypointList waypoints={waypoints} activeWaypointId={activeWaypointId} />
4138
{children}
4239
</div>

0 commit comments

Comments
 (0)