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="show-addaccount-container">
{" "} {" "}
<div className="plan-header-right"> <div className="plan-header-right">
<h5 className="signup-subheader-text"> <h5 className="signup-button-wrapper-text">
Add additional accounts Add additional accounts
</h5> </h5>
<p className="signup-accounts-info"> <p className="signup-accounts-info">
Account holder access will be setup later account holder access will be setup later
</p> </p>
</div> </div>
</div> </div>

View File

@@ -40,6 +40,14 @@
margin-top: 6px; 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 { .signup-form {
width: 880px; width: 880px;
} }
@@ -195,10 +203,16 @@
display: flex; display: flex;
flex-direction: column; flex-direction: column;
width: 880px; width: 880px;
min-height: 350px; min-height: 180px;
padding: 12px; padding: 12px;
border-radius: 10px; border-radius: 10px;
//background-color: rgb(240, 247, 250); background-color: #fff;
background-color: red;
border: 1px solid #e9e9e9; border: 1px solid #e9e9e9;
} }
.signup-accounts-info {
font-weight: 300;
font-size: 0.93rem;
margin-top: 0px;
margin-left: 5px;
}