Increasing the size of Service details page.

This commit is contained in:
Kartik Sharma 2025-11-20 10:29:42 +05:30
parent 195a0c83bb
commit d3c006279c
2 changed files with 3 additions and 5 deletions

View File

@ -117,10 +117,8 @@ const ServiceBranch = () => {
<i className="bx bx-sm bx-plus-circle me-2"></i> <i className="bx bx-sm bx-plus-circle me-2"></i>
<span className="d-none d-md-inline-block">Add Branch</span> <span className="d-none d-md-inline-block">Add Branch</span>
</button> </button>
</div> </div>
</div> </div>
</div> </div>
<div className="mx-2 mt-3"> <div className="mx-2 mt-3">
@ -170,7 +168,7 @@ const ServiceBranch = () => {
!isError && !isError &&
data?.data?.length > 0 && data?.data?.length > 0 &&
data.data.map((branch) => ( data.data.map((branch) => (
<tr key={branch.id}> <tr key={branch.id} style={{ height: "35px" }}>
{columns.map((col) => ( {columns.map((col) => (
<td key={col.key} className={`${col.align} py-3`}> <td key={col.key} className={`${col.align} py-3`}>
{col.getValue(branch)} {col.getValue(branch)}

View File

@ -33,11 +33,11 @@ const ServiceProjectProfile = () => {
)} )}
<div className="row py-2"> <div className="row py-2">
<div className="col-md-6 col-lg-4 order-2 mb-6"> <div className="col-md-6 col-lg-5 order-2 mb-6">
<ServiceProfile data={data} setIsOpenModal={setIsOpenModal}/> <ServiceProfile data={data} setIsOpenModal={setIsOpenModal}/>
</div> </div>
<div className="col-md-6 col-lg-8 order-2 mb-6"> <div className="col-md-6 col-lg-7 order-2 mb-6">
<ServiceBranch /> <ServiceBranch />
</div> </div>
</div> </div>