Is it possible to hide a tab's label area?

Hello,

I have a panel with several tabs, each tab containing a big switch. I switch from tab to tab using an external switch and a linkId. So, I don’t need the area with the tab’s names to be displayed. Is it possible not to display it?

1 Like

Yep, put this in the container’s css:

> .panel > .navigation {
  display:none;
}
> .panel {
  top: -1rem;
}

You’ll lose the sidepanel toggle though if you’re hiding the root navigation (the sidepanel can always be opened with F10).

2 Likes