Skip to content

Commit

Permalink
fixed page responsiveness issue for formula configuration screen (#1990)
Browse files Browse the repository at this point in the history
  • Loading branch information
Swathi-eGov authored Dec 9, 2024
1 parent d9a3080 commit b92a13e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@ const FormulaConfigWrapper = ({ onSelect, props: customProps }) => {
</Card>
</div>

<div className="card-container" style={{ width: "77vw", marginBottom: "2.5rem" }}>
<div className="card-container" style={{ width: "100%", marginBottom: "2.5rem",maxWidth:'100%',overflow:"hidden" }}>
<FormulaConfiguration
category={ruleConfigurationCategories[formulaInternalKey - 1]?.category}
formulas={[...filteredFormulas?.filter((item) => !deletedFormulas?.includes(item.output)), ...customFormula]}
Expand Down

0 comments on commit b92a13e

Please sign in to comment.