Skip to content

Commit

Permalink
Run biome
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredpalmer committed Nov 15, 2024
1 parent 91aaddd commit 0ad4cb2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
2 changes: 0 additions & 2 deletions app/(auth)/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ import { createUser, getUser } from '@/lib/db/queries';

import { signIn } from './auth';



const authFormSchema = z.object({
email: z.string().email(),
password: z.string().min(6),
Expand Down
10 changes: 5 additions & 5 deletions app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -104,17 +104,17 @@
}

@font-face {
font-family: 'geist';
font-family: "geist";
font-style: normal;
font-weight: 100 900;
src: url(/fonts/geist.woff2) format('woff2');
src: url(/fonts/geist.woff2) format("woff2");
}

@font-face {
font-family: 'geist-mono';
font-family: "geist-mono";
font-style: normal;
font-weight: 100 900;
src: url(/fonts/geist-mono.woff2) format('woff2');
src: url(/fonts/geist-mono.woff2) format("woff2");
}
}

Expand All @@ -123,7 +123,7 @@
pointer-events: none !important;
}

*[class^='text-'] {
*[class^="text-"] {
color: transparent;
@apply rounded-md bg-foreground/20 select-none animate-pulse;
}
Expand Down

0 comments on commit 0ad4cb2

Please sign in to comment.