Skip to content
Merged
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
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