Commit 72197d82 authored by Bilal's avatar Bilal

Fixed responsiveness issues

parent ca3bc5f4
Pipeline #9482 failed with stage
...@@ -215,7 +215,7 @@ const TelepayForm = () => { ...@@ -215,7 +215,7 @@ const TelepayForm = () => {
{formData.line_items.map((line_items, index) => ( {formData.line_items.map((line_items, index) => (
<div key={index}> <div key={index}>
<div className='row mb-4' id={`lineItem-${index}`}> <div className='row mb-4' id={`lineItem-${index}`}>
<div className='col-5 offset-1'> <div className='col-md-5 offset-md-1'>
<label htmlFor={`lineItemDes-${index}`} className='form-label mt-1'> <label htmlFor={`lineItemDes-${index}`} className='form-label mt-1'>
Description Description
</label> </label>
...@@ -228,7 +228,7 @@ const TelepayForm = () => { ...@@ -228,7 +228,7 @@ const TelepayForm = () => {
required required
/> />
</div> </div>
<div className='col-5'> <div className='col-md-5'>
<label htmlFor={`lineItemAmount-${index}`} className='form-label mt-1'> <label htmlFor={`lineItemAmount-${index}`} className='form-label mt-1'>
Amount Amount
</label> </label>
...@@ -242,7 +242,7 @@ const TelepayForm = () => { ...@@ -242,7 +242,7 @@ const TelepayForm = () => {
required required
/> />
</div> </div>
<div className='col-1'> <div className='col-md-1'>
<button type='button' className='btn-close' aria-label='Close' <button type='button' className='btn-close' aria-label='Close'
onClick={() => handleDeleteLineItem(index)}></button> onClick={() => handleDeleteLineItem(index)}></button>
</div> </div>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment