Skip to content

Commit

Permalink
NA - Changed rem to xl for font size
Browse files Browse the repository at this point in the history
  • Loading branch information
nagarajnetcentric committed Feb 1, 2024
1 parent f7c2717 commit a08fc0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/frontend/src/components/Tag/Tag.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ interface TagProps {
export const Tag = ({ label, isSelected }: TagProps) => {
const [selected, setSelected] = React.useState<boolean>(isSelected || false);

const commonClasses = 'rounded-[2.5rem] font-gellix text-[1.25rem] leading-5 p-[1.875rem]';
const commonClasses = 'rounded-[2.5rem] font-gellix text-xl leading-5 p-[1.875rem]';

const handleClick = ()=> {
setSelected(!selected);
Expand Down

0 comments on commit a08fc0c

Please sign in to comment.