chore: tweak line height

This commit is contained in:
Steven
2024-03-20 00:40:46 +08:00
parent ed89cb8310
commit 96a7d0eb25
5 changed files with 16 additions and 18 deletions

View File

@ -3,7 +3,7 @@ interface Props {
}
const Code: React.FC<Props> = ({ content }: Props) => {
return <code className="inline break-all px-1 py-0.5 leading-none text-sm rounded bg-gray-100 dark:bg-zinc-700">{content}</code>;
return <code className="inline break-all px-1 rounded bg-gray-100 dark:bg-zinc-700">{content}</code>;
};
export default Code;