Skip to content

Commit

Permalink
Fix tailwind classname order
Browse files Browse the repository at this point in the history
  • Loading branch information
tommybarvaag committed Mar 22, 2023
1 parent 0d0dbd9 commit 83c10be
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/dashboard/_components/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ import Link from "@/components/ui/link";
export default function Footer() {
return (
<footer className="border-t border-t-neutral-700">
<div className="mx-auto max-w-5xl px-3 pt-4 md:px-4 md:pt-8 pb-24">
<div className="mx-auto max-w-5xl px-3 pt-4 pb-24 md:px-4 md:pt-8">
<Flex justify="between">
<Box>
<h2 className="text-lg font-bold mb-3">Resources</h2>
<h2 className="mb-3 text-lg font-bold">Resources</h2>
<ul className="space-y-2">
<li>
<Link href="https://handbooks.simployer.com/nb-no/handbook/100006?sasid=977f713d-b5c3-45ec-ae83-4ff323b4e473">
Expand Down Expand Up @@ -45,7 +45,7 @@ export default function Footer() {
</ul>
</Box>
<Box>
<h2 className="text-lg font-bold mb-3">Site</h2>
<h2 className="mb-3 text-lg font-bold">Site</h2>
<ul className="space-y-2">
<li>
<Link href="/dashboard">Home</Link>
Expand All @@ -59,7 +59,7 @@ export default function Footer() {
</ul>
</Box>
<Box className="max-w-[360px] grow">
<h2 className="text-lg font-bold mb-3">Feedback</h2>
<h2 className="mb-3 text-lg font-bold">Feedback</h2>
<ThemeSelect className="ml-auto" />
</Box>
</Flex>
Expand Down

0 comments on commit 83c10be

Please sign in to comment.