Skip to content

Commit

Permalink
fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
ocitocit committed Oct 15, 2023
1 parent 6784e84 commit abef986
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/Heading.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ interface HeadingProps {

const Heading: React.FC<HeadingProps> = ({ title, subTitle, center }) => {
return (
<div className={center ? 'text-current' : 'text-start'}>
<div className={center ? 'text-center' : 'text-start'}>
<div className="text-2xl font-bold">{title}</div>
<div className="mt-2 font-light text-neutral-500">{subTitle}</div>
</div>
Expand Down

0 comments on commit abef986

Please sign in to comment.