Browse Source

register mokup fix

amenpunk 4 years ago
parent
commit
32c85756e8
1 changed files with 29 additions and 28 deletions
  1. 29 28
      src/Pages/Register.jsx

+ 29 - 28
src/Pages/Register.jsx

@@ -81,25 +81,26 @@ export function Register() {
     return (
         <Container>
             <Row className="register_content">
-                <Col md={4}>
-        <Card className="card_register">
+                <Col md={4} className="d-none d-md-block">
 
-                    <AuthLayout>
+                    <Card className="card_register">
 
-                        <Link to="/login" component={RouterLink}>
+                        <AuthLayout>
 
-                        </Link>
-                    </AuthLayout>
+                            <Link to="/login" component={RouterLink}>
+
+                            </Link>
+                        </AuthLayout>
 
-                    <h1 variant="h3" sx={{ px: 5, mt: 10, mb: 5 }}>
-                        Efectividad para tus procesos de reclutamiento
-                    </h1>
-                    <img alt="register" src={Mock} />
-        </Card>
+                        <h1 variant="h3" sx={{ px: 5, mt: 10, mb: 5 }}>
+                            Efectividad para tus procesos de reclutamiento
+                        </h1>
+                        <img alt="register" src={Mock} />
+                    </Card>
 
                 </Col>
 
-        <Col style={{ "padding" : 45}} md={6}>
+                <Col style={{ "padding" : 45}} md={6}>
 
                     <Box sx={{ mb: 5 }}>
                         <Typography variant="h4" gutterBottom>
@@ -115,10 +116,10 @@ export function Register() {
                             <Step key={step.label}>
                                 <StepLabel
                                     optional={
-                                        index === 2 ? (
-                                            <Typography variant="caption">Last step</Typography>
-                                        ) : null
-                                    }
+                                    index === 2 ? (
+                                        <Typography variant="caption">Last step</Typography>
+                                    ) : null
+                                }
                                 >
                                     {step.label}
                                 </StepLabel>
@@ -138,17 +139,17 @@ export function Register() {
                     )}
 
                     <div>
-                    <Typography variant="body2" align="center" sx={{ color: 'text.secondary', mt: 0 }}>
-                        Estoy de acuerdo con las {" "}
-                        <Link underline="always" sx={{ color: "#d32f2f" }}>
-                            Condiciones de servicio
-                        </Link>
-                        {" "}y{" "}
-                        <Link underline="always" sx={{ color: "#d32f2f" }}>
-                            Política de privacidad
-                        </Link>
-                        .
-                    </Typography>
+                        <Typography variant="body2" align="center" sx={{ color: 'text.secondary', mt: 0 }}>
+                            Estoy de acuerdo con las {" "}
+                            <Link underline="always" sx={{ color: "#d32f2f" }}>
+                                Condiciones de servicio
+                            </Link>
+                            {" "}y{" "}
+                            <Link underline="always" sx={{ color: "#d32f2f" }}>
+                                Política de privacidad
+                            </Link>
+                            .
+                        </Typography>
 
                         <Typography variant="subtitle2" sx={{ mt: 0, textAlign: 'center' }}>
                             Ya tiene una cuenta?&nbsp;
@@ -158,7 +159,7 @@ export function Register() {
                         </Typography>
                     </div>
 
-            
+
                 </Col>
             </Row>
         </Container>