commit
This commit is contained in:
parent
2be1074ce5
commit
a2a6d9d11e
4 changed files with 23 additions and 2 deletions
|
@ -2,7 +2,7 @@
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
<link rel="icon" type="image/png" href="/logo.png" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
<title>Joclud's Games</title>
|
<title>Joclud's Games</title>
|
||||||
</head>
|
</head>
|
||||||
|
|
BIN
public/logo.png
Normal file
BIN
public/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 6.6 KiB |
|
@ -104,3 +104,24 @@ body {
|
||||||
.helpButton-disabled {
|
.helpButton-disabled {
|
||||||
background-color: #d45555;
|
background-color: #d45555;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: 664px) {
|
||||||
|
.game {
|
||||||
|
padding: 15px;
|
||||||
|
border-radius: 45px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.game-image {
|
||||||
|
height: 150px;
|
||||||
|
margin-left: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.game-right {
|
||||||
|
width: 55vw;
|
||||||
|
margin-right: 5vw;
|
||||||
|
}
|
||||||
|
|
||||||
|
.game-title {
|
||||||
|
font-size: 20px;
|
||||||
|
}
|
||||||
|
}
|
|
@ -117,7 +117,7 @@ export default function Home() {
|
||||||
<div className='game-bottom'>
|
<div className='game-bottom'>
|
||||||
<div className='helpers'>
|
<div className='helpers'>
|
||||||
{JSON.parse(game.helpers).length === 0 ? (
|
{JSON.parse(game.helpers).length === 0 ? (
|
||||||
<p className='no-helper'>Aucun membre ne connait les rêgles</p>
|
<p className='no-helper'>Personne</p>
|
||||||
) :
|
) :
|
||||||
(JSON.parse(game.helpers).map((helper) => (
|
(JSON.parse(game.helpers).map((helper) => (
|
||||||
helper === user.username ? () => { } : (
|
helper === user.username ? () => { } : (
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue