Skip to content

Commit

Permalink
style: sign in page bg color (#2055)
Browse files Browse the repository at this point in the history
  • Loading branch information
aaryan610 authored Sep 1, 2023
1 parent 54d781e commit f71a62f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
7 changes: 5 additions & 2 deletions apps/space/components/issues/board-views/kanban/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ import { observer } from "mobx-react-lite";
// components
import { IssueListHeader } from "components/issues/board-views/kanban/header";
import { IssueListBlock } from "components/issues/board-views/kanban/block";
// ui
import { Icon } from "components/ui";
// interfaces
import { IIssueState, IIssue } from "types/issue";
// mobx hook
Expand Down Expand Up @@ -32,8 +34,9 @@ export const IssueKanbanView = observer(() => {
))}
</div>
) : (
<div className="relative w-full h-full flex justify-center items-center p-10 text-center text-sm text-custom-text-200">
No Issues are available.
<div className="flex justify-center items-center gap-2 pt-10 text-center text-sm text-custom-text-200 font-medium">
<Icon iconName="stack" />
No issues in this state
</div>
)}
</div>
Expand Down
2 changes: 1 addition & 1 deletion apps/space/pages/_document.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ class MyDocument extends Document {
return (
<Html>
<Head />
<body className="antialiased bg-custom-background-90 w-100">
<body className="antialiased bg-custom-background-100 w-100">
<Main />
<NextScript />
</body>
Expand Down
2 changes: 1 addition & 1 deletion apps/space/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ const HomePage = () => {
</div>
<div className="flex flex-col items-center justify-center gap-4 pt-7 sm:w-[360px] mx-auto overflow-hidden">
<GoogleLoginButton handleSignIn={handleGoogleSignIn} />
<GithubLoginButton handleSignIn={handleGitHubSignIn} />
{/* <GithubLoginButton handleSignIn={handleGitHubSignIn} /> */}
</div>
</div>
</>
Expand Down

2 comments on commit f71a62f

@vercel
Copy link

@vercel vercel bot commented on f71a62f Sep 1, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

plane-sh-dev – ./apps/space

plane-space-dev.vercel.app
plane-sh-dev-plane.vercel.app
plane-sh-dev-git-develop-plane.vercel.app

@vercel
Copy link

@vercel vercel bot commented on f71a62f Sep 1, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

plane-dev – ./apps/app

plane-dev-git-develop-plane.vercel.app
plane-dev.vercel.app
plane-dev-plane.vercel.app

Please sign in to comment.