We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2235a23 commit 21bf27eCopy full SHA for 21bf27e
src/components/common/Pill.tsx
@@ -35,7 +35,7 @@ const PillActionContainer = (props: React.PropsWithChildren<PillProps>) => {
35
const animationClass = `transition-all duration-300 `
36
const prop = {
37
"data-selected": Boolean(props.isSelected),
38
- className: twMerge(selectedPillClass, animationClass, "max-content py-[4px] px-[6px] md:px-4 rounded-[5px] bg-gray-custom-700 hover:bg-gray-custom-600 hover:text-gray-custom-100 max-md:leading-[100%] cursor-pointer"),
+ className: twMerge(selectedPillClass, animationClass, "max-content py-[4px] px-[6px] md:px-4 rounded-[5px] bg-gray-custom-700 hover:bg-gray-custom-600 hover:text-gray-custom-100 max-md:leading-[100%] cursor-pointer capitalize"),
39
};
40
41
const defaultOnClick = (e: React.MouseEvent) => {e.stopPropagation()}
0 commit comments