some resizing

This commit is contained in:
ntr 2019-03-31 18:11:47 +11:00
parent 59a1f808e9
commit 6cd844c53a
3 changed files with 3 additions and 4 deletions

View File

@ -267,6 +267,8 @@ button:hover {
.cryp-box .skills {
width: 50%;
min-width: 150px;
flex: 1 1 50%;
}
.cryp-skill-btn {

View File

@ -32,10 +32,6 @@ function GamePanel(props) {
? activeSkill.crypId === cryp.id && activeSkill.skill === s
: false;
if (activeSkill) {
console.log(cryp.id, s, highlight);
}
return (
<button
key={i}

View File

@ -6,6 +6,7 @@ function setupKeys(store) {
key.unbind('esc');
key('esc', () => store.dispatch(actions.setCombiner([null, null, null])));
key('esc', () => store.dispatch(actions.setReclaiming(false)));
key('esc', () => store.dispatch(actions.setActiveSkill(null)));
}
module.exports = setupKeys;