button size

This commit is contained in:
ntr
2019-06-03 15:03:38 +10:00
parent 03a35109dc
commit a81b4ccc2b
4 changed files with 3 additions and 6 deletions
-1
View File
@@ -34,7 +34,6 @@
*CLIENT*
targeting arrows back?
highlight on touch until buy
reconnect based on time delta
dont' nav to list on connect
menu footer
+1 -2
View File
@@ -9,7 +9,7 @@
"main main";
}
button {
#mnml button {
font-size: 8pt;
}
@@ -42,5 +42,4 @@
.login {
width: 100%;
}
}
-1
View File
@@ -81,7 +81,6 @@ function registerEvents(store) {
function setAccount(account) {
store.dispatch(actions.setAccount(account));
store.dispatch(actions.setNav('team'));
}
function clearCombiner() {
+1 -1
View File
@@ -25,7 +25,7 @@ module.exports = {
itemEquip: createReducer(null, 'SET_ITEM_EQUIP'),
itemInfo: createReducer({ combos: [], items: [] }, 'SET_ITEM_INFO'),
itemUnequip: createReducer(null, 'SET_ITEM_UNEQUIP'),
nav: createReducer(null, 'SET_NAV'),
nav: createReducer('team', 'SET_NAV'),
showNav: createReducer(null, 'SET_SHOW_NAV'),
ping: createReducer(null, 'SET_PING'),
player: createReducer(null, 'SET_PLAYER'),