From 01c2d03c7f7c36f78a41f6bb6a4615ae4342eca1 Mon Sep 17 00:00:00 2001 From: CANCI0 Date: Sun, 4 Feb 2024 21:50:36 +0100 Subject: [PATCH] Avances en la UI --- webapp/src/App.css | 8 +++--- webapp/src/components/Login/Login.css | 4 +++ webapp/src/pages/Authenticate/Authenticate.js | 2 ++ webapp/src/pages/Clasico/Clasico.css | 6 +++++ webapp/src/pages/Clasico/Clasico.js | 26 ++++++++++--------- webapp/src/pages/Home/Home.css | 6 +++-- webapp/src/pages/WrongRoute/WrongRoute.css | 1 + 7 files changed, 34 insertions(+), 19 deletions(-) diff --git a/webapp/src/App.css b/webapp/src/App.css index 6c257577..57491b2f 100644 --- a/webapp/src/App.css +++ b/webapp/src/App.css @@ -2,7 +2,6 @@ height: 90vh; display: flex; flex-direction: column; - justify-content: flex-start; align-items: center; text-align: center; } @@ -34,8 +33,7 @@ input, button, a{ } input:hover, button:hover, a:hover { - color: #fff; - background-color: #1A1A1A; - box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px; - transform: translateY(-2px); + background-color: #00ffc0; + -webkit-box-shadow: 0 0 0 0 #000,0 0 0 2px #00ffc0; + box-shadow: 0 0 0 0 #000,0 0 0 2px #00ffc0 } diff --git a/webapp/src/components/Login/Login.css b/webapp/src/components/Login/Login.css index 5fc0993d..c73fe721 100644 --- a/webapp/src/components/Login/Login.css +++ b/webapp/src/components/Login/Login.css @@ -6,4 +6,8 @@ .login-container h1{ text-align: center; +} + +a{ + box-shadow: none; } \ No newline at end of file diff --git a/webapp/src/pages/Authenticate/Authenticate.js b/webapp/src/pages/Authenticate/Authenticate.js index b86167b5..5ebf98de 100644 --- a/webapp/src/pages/Authenticate/Authenticate.js +++ b/webapp/src/pages/Authenticate/Authenticate.js @@ -5,6 +5,7 @@ import CssBaseline from '@mui/material/CssBaseline'; import Container from '@mui/material/Container'; import Typography from '@mui/material/Typography'; import Link from '@mui/material/Link'; +import Footer from '../../components/Footer/Footer.js'; import { BrowserRouter as Router, Route, Redirect } from 'react-router-dom'; import { PrivateRoute, useAuth } from 'react-auth-kit'; @@ -34,6 +35,7 @@ function Authenticate() { )} +