Skip to content

Commit 9f6f182

Browse files
committed
Reduce spaces between Title field and Modal Header
1 parent 9d41996 commit 9f6f182

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Frontend/src/components/question/CreateQn.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ function CreateQn({handleClose, addQuestion}) {
3535

3636
return (
3737
<div className='d-flex bg-primary justify-content-center align-items-center'>
38-
<div className="w-100 bg-white p-3">
38+
<div className="w-100 bg-white px-3 pb-3">
3939
<form onSubmit={Submit}>
4040
{error && <div className="alert alert-danger">{error}</div>}
4141
<div className="mb-2">

Frontend/src/components/question/EditQn.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ function EditQn({ question, handleClose, editQuestion }) {
4545

4646
return (
4747
<div className='d-flex bg-primary justify-content-center align-items-center'>
48-
<div className="w-100 bg-white p-3">
48+
<div className="w-100 bg-white px-3 pb-3">
4949
<form onSubmit={Update}>
5050
{error && <div className="alert alert-danger">{error}</div>}
5151
<div className="mb-2">

0 commit comments

Comments
 (0)