Skip to content

Commit

Permalink
fix tiny selector
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisdholt committed Jun 17, 2024
1 parent a5cbce6 commit 9c39099
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/web-components/src/styles/partials/badge.partials.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ import {
subtleState,
successState,
tintState,
tinyState,
warningState,
} from '../states/index.js';

Expand Down Expand Up @@ -112,15 +113,15 @@ export const badgeBaseStyles = css.partial`
* The badge's size styles
*/
export const badgeSizeStyles = css.partial`
:host(${tintState}) {
:host(${tinyState}) {
width: 6px;
height: 6px;
font-size: 4px;
line-height: 4px;
padding-inline: 0;
min-width: unset;
}
:host(${tintState}) ::slotted(svg) {
:host(${tinyState}) ::slotted(svg) {
font-size: 6px;
}
:host(${extraSmallState}) {
Expand Down

0 comments on commit 9c39099

Please sign in to comment.