This commit is contained in:
Kenneth Jannette
2024-01-27 16:58:15 -06:00
parent ae8a63db90
commit 20d63a5806
2 changed files with 19 additions and 5 deletions

View File

@@ -429,11 +429,11 @@ const SignupPage = () => {
<div className="show-addaccount-container">
{" "}
<div className="plan-header-right">
<h5 className="signup-subheader-text">
<h5 className="signup-button-wrapper-text">
Add additional accounts
</h5>
<p className="signup-accounts-info">
Account holder access will be setup later
account holder access will be setup later
</p>
</div>
</div>

View File

@@ -40,6 +40,14 @@
margin-top: 6px;
}
.signup-button-wrapper-text {
letter-spacing: -0.6px;
font-weight: 400;
font-size: 1.7rem;
margin-left: 5px;
margin-bottom: 0px !important;
}
.signup-form {
width: 880px;
}
@@ -195,10 +203,16 @@
display: flex;
flex-direction: column;
width: 880px;
min-height: 350px;
min-height: 180px;
padding: 12px;
border-radius: 10px;
//background-color: rgb(240, 247, 250);
background-color: red;
background-color: #fff;
border: 1px solid #e9e9e9;
}
.signup-accounts-info {
font-weight: 300;
font-size: 0.93rem;
margin-top: 0px;
margin-left: 5px;
}