Skip to content

Commit

Permalink
font adjustment
Browse files Browse the repository at this point in the history
  • Loading branch information
martincham committed Dec 3, 2024
1 parent bb0359e commit 8a0115c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const App: React.FC = () => {
<div className="flex items-center justify-between flex-col md:flex-row">
{/* Title */}
<Link to="/">
<h1 className="md:text-4xl text-3xl hover:text-zinc-500 dark:color-green-600 font-light mt-12 md:mt-0">
<h1 className="md:text-4xl text-3xl hover:text-zinc-500 dark:color-green-600 font-black mt-12 md:mt-0">
Martin Chamberlin
</h1>
</Link>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const Sidebar: React.FC<SidebarProps> = ({ toggleSidebar }) => {
{/* Art Projects */}
{sidebarItems.map((sidebarItem, index) => (
<AccordionItem value={"item-" + index} key={index}>
<AccordionTrigger className="text-md ">
<AccordionTrigger className="text-lg ">
{sidebarItem.name}
</AccordionTrigger>
<AccordionContent key={index} className="pl-2">
Expand Down

0 comments on commit 8a0115c

Please sign in to comment.