We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c179fc5 + 1a28f7d commit e380a20Copy full SHA for e380a20
1 file changed
packages/boxel-ui/addon/src/components/selection-menu/index.gts
@@ -121,6 +121,12 @@ export default class SelectionMenu extends Component<Signature> {
121
.selection-menu-count {
122
line-height: 1;
123
white-space: nowrap;
124
+ /* Reserve a stable width (and equal-width digits) so the trigger
125
+ doesn't shift when the count crosses 1↔2 digits, e.g. during a
126
+ Select All that jumps 9→10. */
127
+ min-width: 2ch;
128
+ text-align: center;
129
+ font-variant-numeric: tabular-nums;
130
}
131
.selection-menu-caret {
132
flex-shrink: 0;
0 commit comments