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

View File

@ -33,11 +33,11 @@ const ServiceProjectProfile = () => {
)}
<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}/>
</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 />
</div>
</div>