Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@ canvas {
--color-3: 210 100% 63%;
--color-4: 195 100% 63%;
--color-5: 90 100% 63%;
--header-height: 64px; /* 4rem */
}
@media (min-width: 1024px) {
:root {
--header-height: 72px; /* a bit taller on large if desired */
}
}

@layer base {
Expand Down
2 changes: 1 addition & 1 deletion app/options.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* eslint-disable @typescript-eslint/no-explicit-any */
import GithubProvider from "next-auth/providers/github";
import { MongoDBAdapter } from "@next-auth/mongodb-adapter";
import { MongoDBAdapter } from "@auth/mongodb-adapter"; // changed import
import clientPromise from "@/lib/mongodb";
import { ObjectId } from "mongodb";

Expand Down
Loading