mirror of
https://github.com/SrIzan10/next-auth.git
synced 2026-05-01 10:55:20 +00:00
Compare commits
9 Commits
next-auth@
...
patch-2
| Author | SHA1 | Date | |
|---|---|---|---|
| 0bcdec7857 | |||
|
|
93f9153d77 | ||
|
|
2c43f83fa6 | ||
|
|
7446969587 | ||
|
|
701edba1c1 | ||
|
|
8141c7e217 | ||
|
|
ab3f78bbae | ||
|
|
ff4519bdda | ||
|
|
52a93d0409 |
@@ -19,7 +19,7 @@ The functionality provided for credentials based authentication is intentionally
|
||||
|
||||
The **Credentials Provider** comes with a set of default options:
|
||||
|
||||
- [Credentials Provider options](https://github.com/nextauthjs/next-auth/blob/main/packages/next-auth/src/providers/credentials.ts)
|
||||
- [Credentials Provider options](https://github.com/nextauthjs/next-auth/blob/main/packages/core/src/providers/credentials.ts)
|
||||
|
||||
You can override any of the options to suit your own use case.
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
id: osu
|
||||
title: Osu!
|
||||
title: osu!
|
||||
---
|
||||
|
||||
## Documentation
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
"repository": "https://github.com/nextauthjs/next-auth.git",
|
||||
"scripts": {
|
||||
"build:app": "turbo run build --filter=next-auth-app",
|
||||
"build": "turbo run build --filter=next-auth --filter=@next-auth/* --no-deps",
|
||||
"build": "turbo run build --filter=next-auth --no-deps",
|
||||
"lint": "turbo run lint --filter=!next-auth-docs --parallel",
|
||||
"test": "turbo run test --concurrency=1 --filter=!@next-auth/pouchdb-adapter --filter=!@next-auth/upstash-redis-adapter --filter=!next-auth-* --filter=[HEAD^1]",
|
||||
"clean": "turbo run clean --no-cache",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "next-auth",
|
||||
"version": "4.24.0",
|
||||
"version": "4.24.3",
|
||||
"description": "Authentication for Next.js",
|
||||
"homepage": "https://next-auth.js.org",
|
||||
"repository": "https://github.com/nextauthjs/next-auth.git",
|
||||
|
||||
@@ -50,10 +50,7 @@
|
||||
color: var(--provider-dark-color, var(--color-primary));
|
||||
background-color: var(--provider-dark-bg, var(--color-background));
|
||||
&:hover {
|
||||
background-color: var(
|
||||
--provider-dark-bg-hover,
|
||||
var(--color-background-hover)
|
||||
) !important;
|
||||
background-color: var(--provider-dark-bg-hover, var(--color-background-hover)) !important;
|
||||
}
|
||||
}
|
||||
#provider-logo {
|
||||
@@ -170,11 +167,6 @@ a.button {
|
||||
background-color: var(--provider-bg-hover, var(--color-background-hover));
|
||||
cursor: pointer;
|
||||
}
|
||||
/* &:focus {
|
||||
outline: none;
|
||||
border: 1px solid;
|
||||
border-color: var(--color-info);
|
||||
} */
|
||||
&:active {
|
||||
cursor: pointer;
|
||||
}
|
||||
@@ -193,10 +185,7 @@ a.button {
|
||||
width: 100%;
|
||||
|
||||
&:hover {
|
||||
background-color: var(
|
||||
--button-hover-bg,
|
||||
var(--colo r-info-hover)
|
||||
) !important;
|
||||
background-color: var(--button-hover-bg, var(--color-info-hover)) !important;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user