[Plot] Fix plot swatch behavior when vertical space is small (#7493)

Add overflow: hidden such that when vertical space is small, no autoscroll happens on the axis
This commit is contained in:
Rukmini Bose (Ruki)
2024-03-14 09:49:36 -07:00
committed by GitHub
parent ceeb761d94
commit 5fc5c13314

View File

@ -141,6 +141,7 @@ mct-plot {
.plot-wrapper-axis-and-display-area { .plot-wrapper-axis-and-display-area {
position: relative; position: relative;
flex: 1 1 auto; flex: 1 1 auto;
overflow: hidden;
//min-height: $plotMinH; //min-height: $plotMinH;
} }