0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-15 03:01:37 -05:00

Fixed typography in Admin X DS

refs. https://github.com/TryGhost/Team/issues/3150
This commit is contained in:
Peter Zimon 2023-05-17 16:12:57 +02:00
parent e880cae1d2
commit e6d289da4a

View file

@ -6,7 +6,7 @@ interface Props {
const SettingSectionHeader: React.FC<Props> = ({title}) => {
return (
<h2 className="mb-4 text-xs font-semibold uppercase tracking-normal text-grey-700">{title}</h2>
<h2 className="mb-4 text-2xs font-semibold uppercase tracking-wide text-grey-700">{title}</h2>
);
};