Bug report on color picker (+ easy solution)

Hello.
A CSS bug report with the new color picker, using sliders. I’m browsing with Firefox desktop 67.

When the bottom slider is moved, a vertical scrollbar appears. This is because the slider holder is incresead in size, and thus also the global height.
colorpicker

There is an easy way to solve this, set this CSS rule to 6px instead of 5px
.color-picker-module:last-child {
margin-bottom: 6px;
}

and also this for symetry purpose
.color-picker-module {
margin-top: 6px;
}

1 Like

Thanks, will check it