@@ -430,9 +430,12 @@ const SignupPage = () => {
|
||||
Object.keys(signupFields).slice(0, -2),
|
||||
fieldsChunkSize
|
||||
).map((names, j) => (
|
||||
<Row key={`row${j}`}>
|
||||
<Row key={`row${j}`} className="signup-form-row">
|
||||
{names.map((name, i) => (
|
||||
<Col key={`${name}${i + fieldsChunkSize * j}`} className="mb-3">
|
||||
<Col
|
||||
key={`${name}${i + fieldsChunkSize * j}`}
|
||||
className="mb-3 signup-form-column"
|
||||
>
|
||||
<TextInput
|
||||
name={name}
|
||||
value={data[name].value}
|
||||
@@ -447,12 +450,13 @@ const SignupPage = () => {
|
||||
type={signupFields[name].type}
|
||||
values={signupFields[name].values}
|
||||
disabled={isBusy}
|
||||
inputClassName="mobile-text-input"
|
||||
/>
|
||||
</Col>
|
||||
))}
|
||||
</Row>
|
||||
))}
|
||||
<Row>
|
||||
<Row className="signup-password-row">
|
||||
<Col className="mb-3">
|
||||
<TextInput
|
||||
id="signupPassword"
|
||||
@@ -470,7 +474,7 @@ const SignupPage = () => {
|
||||
/>
|
||||
</Col>
|
||||
</Row>
|
||||
<Row>
|
||||
<Row className="signup-password-row">
|
||||
<Col className="mb-3">
|
||||
<TextInput
|
||||
id="confirmPassword"
|
||||
|
||||
@@ -69,7 +69,11 @@ p {
|
||||
|
||||
/*** Media Queries **/
|
||||
|
||||
@media only screen and (max-width: 430px) {
|
||||
@media only screen and (max-width: 420px) {
|
||||
.main-container {
|
||||
max-width: 390px;
|
||||
}
|
||||
|
||||
.mobile-content-container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
||||
@@ -114,7 +114,7 @@
|
||||
|
||||
.features-top-wrapper {
|
||||
flex-direction: column;
|
||||
height: 468px;
|
||||
height: 480px;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
|
||||
@@ -286,3 +286,97 @@
|
||||
.signup-proceed-btn {
|
||||
width: 240px;
|
||||
}
|
||||
//
|
||||
@media only screen and (max-width: 420px) {
|
||||
.signup-super-container {
|
||||
width: 360px !important;
|
||||
}
|
||||
.signup-sub-container {
|
||||
width: 360px !important;
|
||||
}
|
||||
.signup-header {
|
||||
width: 340px !important;
|
||||
}
|
||||
.signup-header-text-trial {
|
||||
display: none;
|
||||
}
|
||||
.signup-sub-container {
|
||||
width: 360px;
|
||||
}
|
||||
.signup-header-text {
|
||||
font-size: 1.35rem;
|
||||
&.trial {
|
||||
font-size: 0.89rem;
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
.signup-form {
|
||||
width: 350px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
margin: auto;
|
||||
}
|
||||
.signup-form-row {
|
||||
width: 340px !important;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.signup-form-column {
|
||||
width: 350px;
|
||||
}
|
||||
.mobile-text-input {
|
||||
width: 320px;
|
||||
}
|
||||
.signup-password-row {
|
||||
width: 345px !important;
|
||||
}
|
||||
.select-plan-container {
|
||||
width: 360px;
|
||||
}
|
||||
|
||||
.select-plan-header {
|
||||
width: 350px;
|
||||
flex-direction: column;
|
||||
height: 90px;
|
||||
}
|
||||
|
||||
.plan-header-right {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
margin-top: 0px;
|
||||
margin-bottom: 0px;
|
||||
width: 350px;
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
.plan-header-left {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
margin-top: 0px;
|
||||
margin-bottom: 0px;
|
||||
width: 350px;
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
.radio-group-box {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
margin-top: 0px;
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user