changed item-count font sizes

This commit is contained in:
Layne 2022-03-17 06:29:06 -04:00
parent ca7f25e71e
commit 124e50b75e
2 changed files with 3 additions and 2 deletions

View File

@ -241,7 +241,8 @@
.nitro-item-count {
top: 2px;
right: 2px;
font-size: 8px;
font-size: 9.5px;
padding:2px 3px;
z-index: 1;
}

View File

@ -12,7 +12,7 @@ export const LayoutItemCountView: FC<LayoutItemCountViewProps> = props =>
const getClassNames = useMemo(() =>
{
const newClassNames: string[] = [ 'badge', 'border', 'bg-danger', 'px-1', 'rounded-circle', 'nitro-item-count' ];
const newClassNames: string[] = [ 'badge', 'border', 'border-black', 'bg-danger', 'px-1', 'nitro-item-count' ];
if(classNames.length) newClassNames.push(...classNames);