Commit 72197d82 authored by Bilal's avatar Bilal

Fixed responsiveness issues

parent ca3bc5f4
Pipeline #9482 failed with stage
......@@ -215,7 +215,7 @@ const TelepayForm = () => {
{formData.line_items.map((line_items, index) => (
<div key={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'>
Description
</label>
......@@ -228,7 +228,7 @@ const TelepayForm = () => {
required
/>
</div>
<div className='col-5'>
<div className='col-md-5'>
<label htmlFor={`lineItemAmount-${index}`} className='form-label mt-1'>
Amount
</label>
......@@ -242,7 +242,7 @@ const TelepayForm = () => {
required
/>
</div>
<div className='col-1'>
<div className='col-md-1'>
<button type='button' className='btn-close' aria-label='Close'
onClick={() => handleDeleteLineItem(index)}></button>
</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