more
This commit is contained in:
@@ -430,9 +430,12 @@ const SignupPage = () => {
|
|||||||
Object.keys(signupFields).slice(0, -2),
|
Object.keys(signupFields).slice(0, -2),
|
||||||
fieldsChunkSize
|
fieldsChunkSize
|
||||||
).map((names, j) => (
|
).map((names, j) => (
|
||||||
<Row key={`row${j}`}>
|
<Row key={`row${j}`} className="signup-form-row">
|
||||||
{names.map((name, i) => (
|
{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
|
<TextInput
|
||||||
name={name}
|
name={name}
|
||||||
value={data[name].value}
|
value={data[name].value}
|
||||||
@@ -447,12 +450,13 @@ const SignupPage = () => {
|
|||||||
type={signupFields[name].type}
|
type={signupFields[name].type}
|
||||||
values={signupFields[name].values}
|
values={signupFields[name].values}
|
||||||
disabled={isBusy}
|
disabled={isBusy}
|
||||||
|
inputClassName="mobile-text-input"
|
||||||
/>
|
/>
|
||||||
</Col>
|
</Col>
|
||||||
))}
|
))}
|
||||||
</Row>
|
</Row>
|
||||||
))}
|
))}
|
||||||
<Row>
|
<Row className="signup-password-row">
|
||||||
<Col className="mb-3">
|
<Col className="mb-3">
|
||||||
<TextInput
|
<TextInput
|
||||||
id="signupPassword"
|
id="signupPassword"
|
||||||
@@ -470,7 +474,7 @@ const SignupPage = () => {
|
|||||||
/>
|
/>
|
||||||
</Col>
|
</Col>
|
||||||
</Row>
|
</Row>
|
||||||
<Row>
|
<Row className="signup-password-row">
|
||||||
<Col className="mb-3">
|
<Col className="mb-3">
|
||||||
<TextInput
|
<TextInput
|
||||||
id="confirmPassword"
|
id="confirmPassword"
|
||||||
|
|||||||
@@ -69,7 +69,11 @@ p {
|
|||||||
|
|
||||||
/*** Media Queries **/
|
/*** Media Queries **/
|
||||||
|
|
||||||
@media only screen and (max-width: 430px) {
|
@media only screen and (max-width: 420px) {
|
||||||
|
.main-container {
|
||||||
|
max-width: 390px;
|
||||||
|
}
|
||||||
|
|
||||||
.mobile-content-container {
|
.mobile-content-container {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
|||||||
@@ -287,20 +287,50 @@
|
|||||||
width: 240px;
|
width: 240px;
|
||||||
}
|
}
|
||||||
//
|
//
|
||||||
@media only screen and (max-width: 430px) {
|
@media only screen and (max-width: 420px) {
|
||||||
.signup-super-container {
|
.signup-super-container {
|
||||||
max-width: 380px;
|
width: 360px !important;
|
||||||
}
|
|
||||||
.signup-header {
|
|
||||||
max-width: 400px;
|
|
||||||
}
|
}
|
||||||
.signup-sub-container {
|
.signup-sub-container {
|
||||||
width: 370px;
|
width: 360px !important;
|
||||||
|
}
|
||||||
|
.signup-header {
|
||||||
|
width: 340px !important;
|
||||||
|
}
|
||||||
|
.signup-header-text-trial {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.signup-sub-container {
|
||||||
|
width: 860px;
|
||||||
}
|
}
|
||||||
.signup-header-text {
|
.signup-header-text {
|
||||||
font-size: 1.75rem;
|
font-size: 1.35rem;
|
||||||
&.trial {
|
&.trial {
|
||||||
font-size: 0.95rem;
|
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;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user