changed font size
This commit is contained in:
parent
560ee8fe27
commit
449debc0cf
@ -89,7 +89,7 @@ const ManageBucket = () =>
|
|||||||
return (
|
return (
|
||||||
<div className="container m-0 p-0" style={{ minHeight: "200px" }}>
|
<div className="container m-0 p-0" style={{ minHeight: "200px" }}>
|
||||||
<div className="d-flex justify-content-center">
|
<div className="d-flex justify-content-center">
|
||||||
<p className="fs-h6 fw-semibold m-0">Manage Buckets</p>
|
<p className="fs-6 fw-semibold m-0">Manage Buckets</p>
|
||||||
</div>
|
</div>
|
||||||
<div className="d-flex justify-content-between px-2 px-sm-0 mt-5 mt-sm-1 align-items-center">
|
<div className="d-flex justify-content-between px-2 px-sm-0 mt-5 mt-sm-1 align-items-center">
|
||||||
<i
|
<i
|
||||||
@ -100,7 +100,7 @@ const ManageBucket = () =>
|
|||||||
></i>
|
></i>
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
className={`btn btn-xs btn-primary ms-auto ${
|
className={`btn btn-sm btn-primary ms-auto ${
|
||||||
action_bucket ? "d-none" : ""
|
action_bucket ? "d-none" : ""
|
||||||
}`}
|
}`}
|
||||||
onClick={() => setAction_bucket(true)}
|
onClick={() => setAction_bucket(true)}
|
||||||
@ -151,10 +151,11 @@ const ManageBucket = () =>
|
|||||||
<tbody className="table-border-bottom-0 overflow-auto">
|
<tbody className="table-border-bottom-0 overflow-auto">
|
||||||
{bucketList.map((bucket) => (
|
{bucketList.map((bucket) => (
|
||||||
<tr key={bucket.id}>
|
<tr key={bucket.id}>
|
||||||
<td colSpan={2} className="text-start">
|
|
||||||
{bucket.name}
|
<td colSpan={2} className="text-start text-wrap" >
|
||||||
|
<i className="bx bx-right-arrow-alt me-1"></i> {bucket.name}
|
||||||
</td>
|
</td>
|
||||||
<td className="text-start d-none d-sm-table-cell">
|
<td className="text-start d-none d-sm-table-cell text-wrap" style={{width:"60%"}}>
|
||||||
{bucket.description}
|
{bucket.description}
|
||||||
</td>
|
</td>
|
||||||
<td className="justify-content-center">
|
<td className="justify-content-center">
|
||||||
@ -191,7 +192,8 @@ const ManageBucket = () =>
|
|||||||
<div className="">
|
<div className="">
|
||||||
<label className="form-label">Bucket Discription</label>
|
<label className="form-label">Bucket Discription</label>
|
||||||
<textarea
|
<textarea
|
||||||
className="form-control form-control-sm"
|
className="form-control form-control-sm"
|
||||||
|
rows="3"
|
||||||
{...register("description")}
|
{...register("description")}
|
||||||
/>
|
/>
|
||||||
{errors.description && (
|
{errors.description && (
|
||||||
|
Loading…
x
Reference in New Issue
Block a user