[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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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