Skip to content
Closed
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
3 changes: 1 addition & 2 deletions client/src/components/QuestionPage/QuestionPage.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import React, { useContext, useState, useEffect } from "react";
import Navbar from "../Navbar/Navbar";
import { Loader, ButtonLoader } from "../Loader/Loader";
import { useNavigate } from "react-router";
import { UserContext } from "../../Context/UserContext";
Expand Down Expand Up @@ -61,7 +60,7 @@ const QuestionPage = () => {

return (
<>
<div className="bg-gradient-to-br from-gray-50 via-white to-indigo-50 min-h-screen py-12">
<div className="bg-gradient-to-br from-gray-50 via-white to-indigo-50 h-full py-12">
<div className="flex items-center justify-center">
<div className="mx-auto w-full max-w-2xl">
<div className="card p-8">
Expand Down
Loading