Skip to content

Commit

Permalink
#34 Mejora en el logout
Browse files Browse the repository at this point in the history
  • Loading branch information
AlvaroGlezC committed May 13, 2024
1 parent ea49e89 commit 329075d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Binary file removed docs/images/01_2_iso-25010-topics-EN.drawio.png
Binary file not shown.
2 changes: 1 addition & 1 deletion syg-frontend/src/components/aside/Aside.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ const Aside: React.FC<AsideProps> = (props: AsideProps) => {
}

function handleOnClickLogoutElement() {
navigate('/');
logout()
navigate('/');
}

return (
Expand Down
2 changes: 1 addition & 1 deletion syg-frontend/src/modules/content/Content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { Route, Routes, useNavigate } from 'react-router-dom';
import Historic from '../../modules/historic/Historic';
import Aside from '../../components/aside/Aside';
import Game from '../../modules/game/Game';
import { login, logout } from '../../secure/keycloak';
import { login } from '../../secure/keycloak';
import { User } from '../../types/types';
import HomeIcon from '@mui/icons-material/Home';
import GamesIcon from '@mui/icons-material/Games';
Expand Down
4 changes: 2 additions & 2 deletions syg-frontend/src/modules/game/Game.scss
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,13 @@
color: #ffffff;
border-radius: 1em;
&.answer-number-0{
background-color: #E21B3C;
background-color: #37516b;
}
&.answer-number-1{
background-color: #D89E00;
}
&.answer-number-2{
background-color: #26890B;
background-color: #8b1fe9;
}
&.answer-number-3{
background-color: #0B6BCB;
Expand Down

0 comments on commit 329075d

Please sign in to comment.