misc fixes

This commit is contained in:
Mashy 2019-05-18 00:11:15 +10:00
parent 90fd71ede7
commit dcf7ef6f15
3 changed files with 10 additions and 5 deletions

View File

@ -339,11 +339,9 @@
.equip .skills button {
color: whitesmoke;
font-size: 16pt;
padding: 5px;
font-size: 1em;
padding: 0.2em;
border-width: 0px;
height: 100%;
}
button.equip {
@ -406,3 +404,6 @@ button.equip {
.spec-goals .unmet {
opacity: 0.5;
}
/* Mobile Nav*/
#toggle-vbox { display: none; }
#toggle-vbox-label { display: none; }

View File

@ -46,7 +46,11 @@
#toggle-vbox:checked ~ .vbox { display: none; }
#toggle-vbox:checked ~ .equip {
display: initial;
grid-area: first;
}
#toggle-vbox:checked ~ .highlight {
display: initial;
}

View File

@ -69,7 +69,7 @@ function Cryp(props) {
function onClick(e) {
e.stopPropagation();
e.preventDefault();
if (activeVar !== null) return sendVboxApply(cryp.id, activeVar);
if (activeVar !== null) sendVboxApply(cryp.id, activeVar);
return setActiveCryp(cryp);
}