Slider squeezed together in vertical orientation

Using the orientation='vertical argument doesn’t give the desired output: the slider is shown, but seems squeezed. Chaning e.g. height=300 or width=300 is not solving the problem.
Any ideas?

panel version 0.10.2

import panel as pn
pn.extension()

vert = pn.widgets.IntSlider(name='vertical ',end=10,orientation='vertical')
hor = pn.widgets.IntSlider(name='horizontal ',end=10)
pn.Row(vert,hor)

image

Hi @mcav

I tried without luck to come up with a solution. I think the .css is buggy. Could you report this as a bug on Github? Thx.

1 Like

Hi @mcav

You can find a workaround here Vertical sliders’ appearance is broken · Issue #10444 · bokeh/bokeh (github.com)