Skip to content

Commit d3c1306

Browse files
committed
ui-manchette: fix manchette toolbar not fixed bottom
The PR #728 changed the height of the manchette from a min height to a fixed one. It introduced a bug where, when having a long list of waypoint, when scrolling bottom, the manchette toolbar wasn't stick to the bottom anymore. Fix this issue by giving back a min height to the manchette while still keeping its dynamic value introduced in PR #728. Signed-off-by: SharglutDev <[email protected]>
1 parent 0a102a1 commit d3c1306

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui-manchette/src/components/Manchette.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ const Manchette = ({
3333
height = INITIAL_OP_LIST_HEIGHT,
3434
}: ManchetteProps) => (
3535
<div className="manchette-container">
36-
<div className="bg-white-100 border-r border-grey-30" style={{ height: `${height}px` }}>
36+
<div className="bg-white-100 border-r border-grey-30" style={{ minHeight: `${height}px` }}>
3737
<WaypointList waypoints={waypoints} waypointMenuData={waypointMenuData} />
3838
{children}
3939
</div>

0 commit comments

Comments
 (0)