Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Formula View, and Select Acitivity Screen CSS changes #1803

Merged
merged 11 commits into from
Nov 12, 2024
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,16 @@ const ActivityHomeCard = ({onClickCard=()=>{},...props}) => {

return (
<React.Fragment>
<Card className="fsm" style={{ backgroundColor: "transparent", boxShadow: "none", paddingTop: "0" }}>
<Card className="fsm" style={{ backgroundColor: "transparent", boxShadow: "none", paddingTop: "0",marginRight:"1rem",marginLeft:"1rem" }}>
abishekTa-egov marked this conversation as resolved.
Show resolved Hide resolved
abishekTa-egov marked this conversation as resolved.
Show resolved Hide resolved
<CardHeader> {t(props.title)} </CardHeader>
<div style={{ display: "grid", gridTemplateColumns: "33.3% 33.3% 33.3%", textAlign: "-webkit-center", gap: "24px" }}>
<div style={{
abishekTa-egov marked this conversation as resolved.
Show resolved Hide resolved
display: "grid",
gridTemplateColumns: "33.3% 33.3% 33.3%",
textAlign: "-webkit-center",
gap: "24px",
marginRight:"3rem"
}}
>
{props.module.map((i) => {
return (
<CardNew
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,15 @@ const FormulaView = ({ output = "N/A", input1 = "N/A", input2 = "N/A", input3 =
type="text"
value={t(input1)}
nonEditable={true}
style={{ width: "100%" }}
style={{
abishekTa-egov marked this conversation as resolved.
Show resolved Hide resolved
width: "100%",
padding: "8px",
border: "1px solid #ccc",
borderRadius: "4px",
cursor: "pointer",
boxSizing: "border-box"
}}
title={t(input1)}
abishekTa-egov marked this conversation as resolved.
Show resolved Hide resolved
/>
<TextInput
type="text"
Expand All @@ -38,7 +46,15 @@ const FormulaView = ({ output = "N/A", input1 = "N/A", input2 = "N/A", input3 =
type="text"
value={t(input3)}
nonEditable={true}
style={{ width: "100%" }}
style={{
width: "100%",
abishekTa-egov marked this conversation as resolved.
Show resolved Hide resolved
padding: "8px",
border: "1px solid #ccc",
borderRadius: "4px",
cursor: "pointer",
boxSizing: "border-box"
}}
title={t(input3)}
abishekTa-egov marked this conversation as resolved.
Show resolved Hide resolved
/>
</LabelFieldPair>

Expand Down