I want to introduce some vertical space in my Holoviz panel. I tried using pn.layout.VSpacer(), but the inserted space is too large. I was not able to find the argument that adjust the space.
In particular, I tried pn.layout.VSpacer(height=10), but the height argument does not adjust the space. What argument does adjust the space?
Out of the box most of the stuff is dynamic, using the space available. You can change this with the “sizing_mode” or in addition restrict sizes with min_height, max_height, min_width, …
So if you want a flexible space within some limits you can also do things like following. Play with the min_width/max_width to see how it affects the Space and the Button-width as you change the width of your browser.