Victor12 It doesn't take all the space because on the right you should see your tag description. But it looks like you didn't set any description.
There are two easy options with custom LESS (under appearance tab in the admin panel) to fix this:
First option is to increase the tag name width while decreasing the description width of the same number of pixels. Replace "50px" with the amount you want to increase the tag name width:
(150px and 370px are the default width of each elements)
.SelectTagListItem-name {
width: 150px + 50px;
}
.SelectTagListItem-description {
width: 370px - 50px;
}
Or if you don't care about descriptions, just hide the description and let the name take the full width, which is what already happens in Flarum mobile layout:
.SelectTagListItem-name {
width: auto;
}
.SelectTagListItem-description {
display: none;
}
Hope this helps 😉