Merge branch 'master' into horizontal-vbox

This commit is contained in:
ntr
2019-05-11 13:06:26 +10:00
19 changed files with 103 additions and 80 deletions
+2 -2
View File
@@ -66,7 +66,7 @@ function Cryp(props) {
const skill = cryp.skills[i];
const s = skill
? skill.skill
: (<span>&nbsp;</span>);
: (<span className="gray">+</span>);
function skillClick(e) {
if (!skill) setHighlight('skill');
@@ -98,7 +98,7 @@ function Cryp(props) {
return (
<figure key={i} className="gray" onClick={blankSpecClick}>
{shapes.diamond('stat-icon gray')}
<figcaption>&nbsp;</figcaption>
<figcaption>+</figcaption>
</figure>
);
}