nearly there

This commit is contained in:
ntr 2019-05-02 16:54:30 +10:00
parent 6c13dc0d15
commit 3f457092d3
2 changed files with 13 additions and 9 deletions

View File

@ -656,17 +656,11 @@ table td svg {
} }
.game-cryp figure { .game-cryp figure {
margin: 0;
flex: 0 0 50%;
text-align: center; text-align: center;
display: flex;
flex-flow: column;
justify-content: flex-end;
} }
.game-cryp .stats { .game-cryp .stats {
flex: 1 0 25%; flex: 1 0 20%;
align-items: flex-start;
display: flex; display: flex;
flex-flow: row wrap; flex-flow: row wrap;
} }
@ -689,6 +683,10 @@ table td svg {
height: 100%; height: 100%;
} }
.resolving .skills button {
display: none;
}
.game-cryp .effects { .game-cryp .effects {
max-height: 100%; max-height: 100%;
font-size: 1.5em; font-size: 1.5em;
@ -984,6 +982,10 @@ CRYP DAMAGE
flex: unset; flex: unset;
} }
.instance-cryp .stats figure {
padding: 0.2em 0;
}
.instance-cryp .skills, .instance-cryp .stats { .instance-cryp .skills, .instance-cryp .stats {
display: none; display: none;
} }

View File

@ -138,7 +138,7 @@ function GamePanel(props) {
const stats = [STATS.greenLife, STATS.redLife, STATS.blueLife].map((s, j) => ( const stats = [STATS.greenLife, STATS.redLife, STATS.blueLife].map((s, j) => (
<figure key={j} alt={s.stat}> <figure key={j} alt={s.stat}>
{s.svg(`stat-icon ${s.colour}`)} {s.svg(`stat-icon ${s.colour}`)}
<figcaption>{cryp[s.stat].value} / {cryp[s.stat].max}</figcaption> <figcaption>1000 / 1000</figcaption>
</figure> </figure>
)); ));
@ -179,8 +179,10 @@ function GamePanel(props) {
); );
} }
const gameClasses = `game ${resolution ? 'resolving': ''}`;
return ( return (
<main className="game" onClick={() => setActiveCryp(null)} > <main className={gameClasses} onClick={() => setActiveCryp(null)} >
{header} {header}
{timer} {timer}
{PlayerTeam(playerTeam, setActiveSkill)} {PlayerTeam(playerTeam, setActiveSkill)}