Skip to content

Commit

Permalink
small fix to styling of drawer titles
Browse files Browse the repository at this point in the history
  • Loading branch information
joevaugh4n committed Aug 9, 2024
1 parent 0914e3d commit d7602e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/atoms/Drawer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export default function Drawer({ title, children }: DrawerProps) {
onClick={toggleOpen}
aria-expanded={open}
>
<h2 className="flex justify-between text-left">
<h2 className="flex justify-between text-left text-lg">
{title}
<svg
className={`w-5 h-5 transition-transform duration-300 ${open ? 'rotate-180' : ''}`}
Expand Down

0 comments on commit d7602e5

Please sign in to comment.