forked from github/plane
style: sign in page bg color (#2055)
This commit is contained in:
parent
54d781ef91
commit
f71a62f142
@ -5,6 +5,8 @@ import { observer } from "mobx-react-lite";
|
|||||||
// components
|
// components
|
||||||
import { IssueListHeader } from "components/issues/board-views/kanban/header";
|
import { IssueListHeader } from "components/issues/board-views/kanban/header";
|
||||||
import { IssueListBlock } from "components/issues/board-views/kanban/block";
|
import { IssueListBlock } from "components/issues/board-views/kanban/block";
|
||||||
|
// ui
|
||||||
|
import { Icon } from "components/ui";
|
||||||
// interfaces
|
// interfaces
|
||||||
import { IIssueState, IIssue } from "types/issue";
|
import { IIssueState, IIssue } from "types/issue";
|
||||||
// mobx hook
|
// mobx hook
|
||||||
@ -32,8 +34,9 @@ export const IssueKanbanView = observer(() => {
|
|||||||
))}
|
))}
|
||||||
</div>
|
</div>
|
||||||
) : (
|
) : (
|
||||||
<div className="relative w-full h-full flex justify-center items-center p-10 text-center text-sm text-custom-text-200">
|
<div className="flex justify-center items-center gap-2 pt-10 text-center text-sm text-custom-text-200 font-medium">
|
||||||
No Issues are available.
|
<Icon iconName="stack" />
|
||||||
|
No issues in this state
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
@ -5,7 +5,7 @@ class MyDocument extends Document {
|
|||||||
return (
|
return (
|
||||||
<Html>
|
<Html>
|
||||||
<Head />
|
<Head />
|
||||||
<body className="antialiased bg-custom-background-90 w-100">
|
<body className="antialiased bg-custom-background-100 w-100">
|
||||||
<Main />
|
<Main />
|
||||||
<NextScript />
|
<NextScript />
|
||||||
</body>
|
</body>
|
||||||
|
@ -126,7 +126,7 @@ const HomePage = () => {
|
|||||||
</div>
|
</div>
|
||||||
<div className="flex flex-col items-center justify-center gap-4 pt-7 sm:w-[360px] mx-auto overflow-hidden">
|
<div className="flex flex-col items-center justify-center gap-4 pt-7 sm:w-[360px] mx-auto overflow-hidden">
|
||||||
<GoogleLoginButton handleSignIn={handleGoogleSignIn} />
|
<GoogleLoginButton handleSignIn={handleGoogleSignIn} />
|
||||||
<GithubLoginButton handleSignIn={handleGitHubSignIn} />
|
{/* <GithubLoginButton handleSignIn={handleGitHubSignIn} /> */}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</>
|
</>
|
||||||
|
Loading…
Reference in New Issue
Block a user