How to move the tab counter for folded tabs? #1751
-
Okay so I tend to have quite a few tabs open within a single branch, but I'm not sure what the CSS could possibly be for moving around the tab counter. Right now, having the tab counter farther to the left or centered with the favicon would be ideal IMO, since right now it tends to interfere with the tab's title. I also use double line titles, which conflict even harder with the tab counters. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Try increasing the values of the '--tabs-inner-gap' and '--tabs-height' variables to make up some room, e.g.: #root.root {--tabs-inner-gap: 10px;}
#root.root {--tabs-height: 36px;} To place the counter centered beneath the favicon, try the following rule: .Tab .child-count {
width: 16px;
right: 0px;
bottom: -10px;
text-align: center;
} |
Beta Was this translation helpful? Give feedback.
Try increasing the values of the '--tabs-inner-gap' and '--tabs-height' variables to make up some room, e.g.:
To place the counter centered beneath the favicon, try the following rule: