-
+
@@ -152,29 +130,20 @@ class CuentaDestino extends Component {
-
- );
+
;
}
getBanco(event) {
diff --git a/src/components/Transferencia/CuentaDestino/style.css b/src/components/Transferencia/CuentaDestino/style.css
index b6a8173..2999cb8 100644
--- a/src/components/Transferencia/CuentaDestino/style.css
+++ b/src/components/Transferencia/CuentaDestino/style.css
@@ -111,10 +111,15 @@
}
.btn-ctanueva {
- background-color: #f49600;
- color: #fff;
+ border-radius: 25px;
border: none;
+ background-color: #F49600;
+ color: #fff;
+ height: 55px;
width: 100%;
+ font-size: 20px;
+ font-weight: 500;
+ margin-top: 5px;
}
.btn-transferir {
@@ -123,7 +128,19 @@
border: none;
width: 100%;
}
-/* .show-grid{
- margin: .4em;
- border: .5px solid gray;
-} */
+
+#ctaDestino {
+ height: 100vh;
+}
+
+#btnTransferir2 {
+ border-radius: 25px;
+ border: none;
+ background-color: #F49600;
+ color: #fff;
+ height: 55px;
+ width: 100%;
+ font-size: 20px;
+ font-weight: 500;
+ margin-top: 5px;
+}
\ No newline at end of file
diff --git a/src/components/Transferencia/CuentaOrigen/index.js b/src/components/Transferencia/CuentaOrigen/index.js
index fb62f3d..1070fbc 100644
--- a/src/components/Transferencia/CuentaOrigen/index.js
+++ b/src/components/Transferencia/CuentaOrigen/index.js
@@ -29,7 +29,7 @@ console.log(rut )
}
render() {
const {data} =this.props;
- return
+ return
Transferencia
@@ -60,8 +60,8 @@ console.log(rut )
- {this.state.isToggleOn ? 'ON' : this.renderState()}
-
+ {this.state.isToggleOn ? "ON" : this.renderState()}
+
;
}
}
diff --git a/src/components/Transferencia/CuentaOrigen/style.css b/src/components/Transferencia/CuentaOrigen/style.css
index 61259bd..6498e46 100644
--- a/src/components/Transferencia/CuentaOrigen/style.css
+++ b/src/components/Transferencia/CuentaOrigen/style.css
@@ -43,7 +43,8 @@
width: 35px;
background-color: #afafb3;
padding: 8px;
- margin-right: 7px;
+ margin-right: 0px;
+ margin-left: 6px;
}
.medio {
@@ -55,9 +56,14 @@
margin-left: -15px;
}
+#transf-ctaOrigen {
+ height: 100vh;
+}
+
.cuentasOrigen {
border: 1px solid #eee;
padding: 20px;
+ margin-bottom: 35em;
}
.chevron {
diff --git a/src/components/User/index.js b/src/components/User/index.js
index 18b8192..5fe5f3e 100644
--- a/src/components/User/index.js
+++ b/src/components/User/index.js
@@ -4,7 +4,7 @@ import { Navbar, Form, FormGroup, ControlLabel, FormControl, Button } from 'reac
import PropTypes from 'prop-types';
import $ from 'jquery';
import logo from './../../img/banco estado.png';
-// import './style.css';
+import './style.css';
// Inicio el componente de clase
class User extends Component {
@@ -50,29 +50,27 @@ class User extends Component {
}
// Aquí se renderiza el navbar
render() {
- return (
-
-
-
-
-
-
-
-
-
-
-
-
-
- )
+ return
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ;
}
}
diff --git a/src/components/UserList/index.js b/src/components/UserList/index.js
index 30a0ad6..a1f9e3e 100644
--- a/src/components/UserList/index.js
+++ b/src/components/UserList/index.js
@@ -3,13 +3,11 @@ import { Col } from "react-bootstrap";
import Cuentas from '../Cuentas';
const UserList = ({data}) => {
- return(
-
+ return
Bienvenid@:{data.nombre}
-
-
-
-
- )
+
+
+
+ ;
}
export default UserList;