Refactor_Expenses #321

Merged
pramod.mahajan merged 249 commits from Refactor_Expenses into hotfix/MasterActivity 2025-08-01 13:14:59 +00:00
2 changed files with 77 additions and 75 deletions
Showing only changes of commit 4d4037ed71 - Show all commits

View File

@ -141,7 +141,7 @@ const CreateRole = ({ modalType, onClose }) => {
)}
</div>
<div className="col-12 border px-3"
<div className="border rounded px-3"
style={{
maxHeight: "350px", // Adjust this as needed
overflowY: "auto",

View File

@ -200,12 +200,13 @@ const EditMaster = ({ master, onClose }) => {
</div>
<div className="col-12 text-start">
{/* Scrollable Container */}
{/* Scrollable Container with Border */}
<div
className="border rounded p-3" // border applied here
style={{
maxHeight: "350px", // adjust as needed
maxHeight: "350px",
overflowY: "auto",
paddingRight: "10px", // for better scrollbar spacing
paddingRight: "10px", // spacing for scrollbar
}}
>
{masterFeatures.map((feature, featureIndex) => (
@ -284,6 +285,7 @@ const EditMaster = ({ master, onClose }) => {
</div>
<div className="col-12 text-center">
<button type="submit" className="btn btn-sm btn-primary me-3"> {isLoading ? "Please Wait..." : "Submit"}</button>
<button