Skip to content

Commit

Permalink
style: format code
Browse files Browse the repository at this point in the history
  • Loading branch information
itsjoeoui committed Dec 27, 2023
1 parent 033abaf commit f8bfe16
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/main-nav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export function MainNav() {
<Link
href="/dashboard"
className={cn(
"hover:text-foreground/80 transition-colors",
"transition-colors hover:text-foreground/80",
pathname?.startsWith("/dashboard")
? "text-foreground"
: "text-foreground/60",
Expand Down
2 changes: 1 addition & 1 deletion src/components/site-header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export async function SiteHeader() {
const session = await authRequest.validate();

return (
<header className="border-border/40 bg-background/95 supports-[backdrop-filter]:bg-background/60 sticky top-0 z-50 w-full border-b backdrop-blur">
<header className="sticky top-0 z-50 w-full border-b border-border/40 bg-background/95 backdrop-blur supports-[backdrop-filter]:bg-background/60">
<div className="container flex h-14 max-w-screen-2xl items-center">
<MainNav />
<div className="flex flex-1 items-center justify-between space-x-2 md:justify-end">
Expand Down

0 comments on commit f8bfe16

Please sign in to comment.