Skip to content

Commit

Permalink
fix: text sizing
Browse files Browse the repository at this point in the history
  • Loading branch information
Firgrep committed Jan 18, 2025
1 parent 2b7239f commit 7e6e6d7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
9 changes: 4 additions & 5 deletions features/marketing/components/InfoCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,13 @@ export async function InfoCard({
<div className="d-card-title justify-center">
<Heading as="h4">{title}</Heading>
</div>
<p
className="text-slate-700 dark:text-slate-300 pt-4 text-justify"
dangerouslySetInnerHTML={{ __html: text }}
></p>
<p className="text-slate-700 dark:text-slate-300 pt-4 text-justify text-lg">
{text}
</p>
{url && urlDescription && (
<div className="d-card-actions justify-end">
<Link href={url}>
<button className="btn btn-primary">
<button className="d-btn d-btn-primary">
{urlDescription}
</button>
</Link>
Expand Down
2 changes: 1 addition & 1 deletion lib/components/Maintenance.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export async function Maintenance({
{getMaintenanceIcon(maintenance.severity)}
<Heading as="h3">{title}</Heading>
</div>
<p className="text-slate-900 dark:text-slate-400 pt-4 text-justify">
<p className="text-slate-900 dark:text-slate-300 text-md pt-4 text-justify">
{maintenance.message}
</p>
{maintenance.severity === "beta" && (
Expand Down

0 comments on commit 7e6e6d7

Please sign in to comment.