How to fill tab groups label empty space

Any know the CSS to have the labels for tab groups expand to fill the empty space in the sidebar?

3 points · 2 comments · view on lemmy.world

2 Comments

Godie@lemmy.world · 2 pts · 1y (1 reply)
.tab-group-label {
        #tabbrowser-tabs[orient="vertical"][expanded] & {
            width: 100% !important;
            text-align: start !important;
        }
    }
darcmage@lemmy.dbzer0.com · 1 pts · 1y

Perfect, thank you.