Modal title bar height

Hi Jean, is it possible to change the height and position (say to the bottom) of the modal title bar? Or remove it altogether?

While at it, is the main OSC bar fixed or can we move it to the bottom and change the height?

Thank you!

Yes:

bottom to top:

.popup-wrapper {
  flex-direction:column-reverse;
}

different height:

.popup-title {
  height: 40rem;
}

hidden:

.popup-title {
  display:none
}

Using the web inspector (F12) helps finding out elements that can be customized.

1 Like

Previous snippets apply for modals, here they are for the main navigation (root widget’s css)

bottom to top

> .panel {
  flex-direction:column-reverse;
}
> .panel {
  --nav-height:20rem;
}
1 Like

3 posts were split to a new topic: Is OSC aware of other programs?