Skip to content

Commit

Permalink
Merge pull request #3 from trechriron/trentin-change-css
Browse files Browse the repository at this point in the history
Fixed css for text bounding.
  • Loading branch information
trechriron authored Dec 7, 2023
2 parents 3675492 + d33dcee commit cccfa38
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions src/App/DevFormComponent.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
row: {
display: "flex",
flexDirection: "row",
justifyContent: "space-around",
alignItems: "center",
justifyContent: "flex-start",
padding: "10px",
width: "100%",
},
Expand All @@ -13,13 +12,19 @@
justifyContent: "space-around",
padding: "10px",
},
columnText: {
columnTextLeft: {
display: "flex",
flexDirection: "column",
justifyContent: "space-around",
padding: "10px",
width: "50%",
},
columnTextRight: {
display: "flex",
flexDirection: "column",
padding: "10px",
width: "50%",
},
textField: {
display: "flex",
flexDirection: "column",
Expand Down Expand Up @@ -103,7 +108,7 @@
return (
<div>
<div style={formStyles.row}>
<div style={formStyles.columnText}>
<div style={formStyles.columnTextLeft}>
<p style={formStyles.paragraph}>To better help you estimate the cost of your project, please fill out the form below. Each phase represents a milestone in the development process.
</p>
<span style={formStyles.listHeading}>Example Phases:</span>
Expand All @@ -115,7 +120,7 @@
<li>Phase 5: 12 months after Phase 4</li>
</div>
</div>
<div style={formStyles.columnText}>
<div style={formStyles.columnTextRight}>
<p style={formStyles.paragraph}>The number provided = the number of active users per minute. For example, if you expect 100 users to be using your app per minute, enter 100. You can break down your estimate into 5 phases. Leave any unused fields blank.
</p>
<p style={formStyles.paragraph}>
Expand Down

0 comments on commit cccfa38

Please sign in to comment.