lookin good

This commit is contained in:
ntr
2019-05-15 17:22:18 +10:00
parent 92703882ce
commit 6cba30d2a1
6 changed files with 42 additions and 35 deletions
+8 -10
View File
@@ -137,17 +137,15 @@ function GamePanel(props) {
<div className="effects">
{effects}
</div>
<div className="avatar">
<div className="targeting">
<div>></div>
</div>
<figure
className="img"
onClick={() => selectSkillTarget(cryp.id)} >
{crypAvatar(cryp.name)}
{combatTextEl}
</figure>
<div className="targeting">
<div>></div>
</div>
<figure
className="img"
onClick={() => selectSkillTarget(cryp.id)} >
{crypAvatar(cryp.name)}
{combatTextEl}
</figure>
</div>
);
}
+8 -10
View File
@@ -78,17 +78,15 @@ function GameCryp(props) {
<div className="skills">
{skills}
</div>
<div className="avatar">
<div className="targeting">
<div>></div>
</div>
<figure
className="img"
onClick={() => selectSkillTarget(cryp.id)} >
{crypAvatar(cryp.name)}
{combatTextEl}
</figure>
<div className="targeting">
<div>></div>
</div>
<figure
className="img"
onClick={() => selectSkillTarget(cryp.id)} >
{crypAvatar(cryp.name)}
{combatTextEl}
</figure>
<div className="effects">
{effects}
</div>
+2 -2
View File
@@ -67,7 +67,7 @@ function Menu(args) {
// );
return (
<section className="menu-instance-list" >
<div className="menu-instance-list" >
<table>
<thead>
<tr>
@@ -84,7 +84,7 @@ function Menu(args) {
</tbody>
</table>
<InstanceCreateForm />
</section>
</div>
);
}