Skip to content

Commit

Permalink
style: add font-family for item description
Browse files Browse the repository at this point in the history
  • Loading branch information
phongit-kha committed Jan 2, 2025
1 parent abce448 commit d9214fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/(authProvider)/items/[idparam]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export default function ItemInfoPage() {
{getItemName({ num: parseInt(id ?? "0") })}
</h1>
{/* Item Description */}
<p className="px-4 text-center text-xl">
<p className="px-4 text-center font-ibm text-xl">
{getItemDesp({ num: parseInt(id ?? "0") })}
</p>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/app/visitor/items/[idparam]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export default function ItemInfoPage() {
{getItemName({ num: parseInt(id ?? "0") })}
</h1>
{/* Item Description */}
<p className="px-4 text-center text-xl">
<p className="px-4 text-center font-ibm text-xl">
{getItemDesp({ num: parseInt(id ?? "0") })}
</p>
</div>
Expand Down

0 comments on commit d9214fe

Please sign in to comment.