Skip to content

Commit

Permalink
Make Buttons Non Capitalized
Browse files Browse the repository at this point in the history
-Make buttons non capitalized.
  • Loading branch information
eddiesarevalo committed Oct 9, 2024
1 parent bb2e820 commit f2d7170
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Button/Button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ export const Button = (props: ButtonProps) => {
}

return (
<MaterialButton className={buttonClass} variant={muiVariant} {...other} />
<MaterialButton className={buttonClass} variant={muiVariant} {...other} sx={{ width: "fit-content", textTransform: "none" }}/>
);
};

0 comments on commit f2d7170

Please sign in to comment.