Skip to content

Commit

Permalink
fixed heading style
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebstep committed Oct 12, 2023
1 parent 3b554cf commit 16a82de
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions components/Doubleheadings.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
export default function Headings(props: { top: string; bottom: string }) {
return (
<div className="flex flex-col text-center w-full mb-8">
<h3 className="text-xs text-blue-500 tracking-widest font-medium text-center mb-1">
<h3 className="text-sm text-blue-500 tracking-widest font-medium text-center mb-1">
{props.top}
</h3>
<h2 className="sm:text-3xl text-2xl font-medium title-font">
<h2 className="text-3xl font-medium">
{props.bottom}
</h2>
</div>
Expand Down
2 changes: 1 addition & 1 deletion components/Featurecard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default function Featurecard(props: FeaturecardProps) {
<div className="w-12 h-12 mr-4 inline-flex items-center justify-center rounded-full bg-blue-500 text-white flex-shrink-0 transition-transform group-hover:-translate-y-1 motion-reduce:transform-none">
{props.icon}
</div>
<h3>{props.title}</h3>
<h3 className="text-2xl font-medium mb-4 text-left">{props.title}</h3>
</div>
<div className="flex-grow">
<p className="leading-relaxed text-base">{props.description}</p>
Expand Down

0 comments on commit 16a82de

Please sign in to comment.