Skip to content

Commit

Permalink
fix: padding in TeamPill (and hence TeamRole) (#17030)
Browse files Browse the repository at this point in the history
  • Loading branch information
hbjORbj authored Oct 9, 2024
1 parent 8d61b45 commit 90bcd71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/features/ee/teams/components/TeamPill.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default function TeamPill(props: Props) {
const { color, text, ...rest } = props;
return (
<div
className={classNames("text-medium self-center rounded-md px-1 py-0.5 text-xs ltr:mr-1 rtl:ml-1", {
className={classNames("text-medium self-center rounded-md px-1.5 py-1 text-xs ltr:mr-1 rtl:ml-1", {
" bg-subtle text-emphasis": !color,
" bg-info text-info": color === "blue",
" bg-error text-error ": color === "red",
Expand Down

0 comments on commit 90bcd71

Please sign in to comment.