Skip to content

Commit

Permalink
arreglar bug interfaz
Browse files Browse the repository at this point in the history
  • Loading branch information
bidof committed Mar 6, 2024
1 parent c7a973a commit 272a591
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 18 deletions.
2 changes: 1 addition & 1 deletion webapp/src/components/StartButton.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { useContext } from 'react';
import { Link, useNavigate } from 'react-router-dom';
import { AuthContext } from './authcontext'; // Cambia AuthProvider a AuthContext

import '../styles/startButton.css'
const StartButton = () => {
const { isLoggedIn } = useContext(AuthContext);
const navigate = useNavigate();
Expand Down
38 changes: 21 additions & 17 deletions webapp/src/styles/startButton.css
Original file line number Diff line number Diff line change
@@ -1,18 +1,22 @@
.start-button {
display: flex;
justify-content: center;
align-items: center;
height: 100vh; /* Esto hace que el botón esté centrado verticalmente en la pantalla */

/* Estilos del botón */
.button {
font-size: 20px; /* Ajusta el tamaño de la fuente según sea necesario */
padding: 10px 20px; /* Ajusta el padding según sea necesario */
background-color: green;
color: white;
border: none;
border-radius: 5px; /* Ajusta el border-radius según sea necesario */
cursor: pointer;
text-decoration: none; /* Esto elimina el subrayado del texto del botón */
}
}
/* Establece el tamaño del botón */
font-size: 2em; /* Ajusta el tamaño de la fuente según sea necesario */
padding: 20px 40px; /* Ajusta el padding según sea necesario */

/* Centra el botón en el medio de la pantalla */
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);

/* Establece el color de fondo y el color de la letra */
background-color: green;
color: white;

/* Establece el estilo del borde */
border: none;
border-radius: 5px; /* Ajusta el border-radius según sea necesario */

/* Establece el estilo del cursor */
cursor: pointer;
}

0 comments on commit 272a591

Please sign in to comment.