Skip to content

Commit 9d41996

Browse files
committed
Increase bottom margin for Description field
1 parent 0195363 commit 9d41996

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
@@ -66,7 +66,7 @@ function CreateQn({handleClose, addQuestion}) {
6666
<label className="form-check-label" htmlFor="hard">Hard</label>
6767
</div>
6868
</div>
69-
<div className="mb-2">
69+
<div className="mb-3">
7070
<label htmlFor="">Description</label>
7171
<input type="text" placeholder='Return the largest....' className='form-control'
7272
onChange={(e) => setDescription(e.target.value)}/>

Frontend/src/components/question/EditQn.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ function EditQn({ question, handleClose, editQuestion }) {
7373
<label className="form-check-label" htmlFor="hard">Hard</label>
7474
</div>
7575
</div>
76-
<div className="mb-2">
76+
<div className="mb-3">
7777
<label htmlFor="">Description</label>
7878
<input type="text" placeholder='Return the largest....' className='form-control'
7979
value={description} onChange={(e) => setDescription(e.target.value)}/>

0 commit comments

Comments
 (0)