Skip to content

Commit

Permalink
Update Q&A elem alignments
Browse files Browse the repository at this point in the history
  • Loading branch information
praveen-palanisamy committed Aug 23, 2023
1 parent 1089af7 commit a9ddabd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion renderer/components/FileQandA.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default function FileQandA() {
const { data: session, status } = useSession();
const isLoadingUser = status === "loading";
return (
<div className="flex flex-col justify-center align-center min-h-screen">
<div className="flex flex-col justify-center align-center">
{!isLoadingUser && (
<div
className={`grid grid-flow-row-dense grid-cols-3 grid-gap bg-white dark:bg-slate-800`}
Expand Down
2 changes: 1 addition & 1 deletion renderer/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default function Main() {
const { mode } = useContext(AppContext);
const supportedModes = ["", "cloud"];
return (
<div className="flex flex-col min-h-screen">
<div className="">
{mode === "cloud" && <FileQandA />}
{mode === "" && <WelcomePage />}
{!supportedModes.includes(mode) && <WelcomePage />}
Expand Down

1 comment on commit a9ddabd

@vercel
Copy link

@vercel vercel bot commented on a9ddabd Aug 23, 2023

Choose a reason for hiding this comment

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

Please sign in to comment.