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

View File

@ -34,7 +34,6 @@
*CLIENT* *CLIENT*
targeting arrows back? targeting arrows back?
highlight on touch until buy
reconnect based on time delta reconnect based on time delta
dont' nav to list on connect dont' nav to list on connect
menu footer menu footer

View File

@ -9,7 +9,7 @@
"main main"; "main main";
} }
button { #mnml button {
font-size: 8pt; font-size: 8pt;
} }
@ -42,5 +42,4 @@
.login { .login {
width: 100%; width: 100%;
} }
}
}

View File

@ -81,7 +81,6 @@ function registerEvents(store) {
function setAccount(account) { function setAccount(account) {
store.dispatch(actions.setAccount(account)); store.dispatch(actions.setAccount(account));
store.dispatch(actions.setNav('team'));
} }
function clearCombiner() { function clearCombiner() {

View File

@ -25,7 +25,7 @@ module.exports = {
itemEquip: createReducer(null, 'SET_ITEM_EQUIP'), itemEquip: createReducer(null, 'SET_ITEM_EQUIP'),
itemInfo: createReducer({ combos: [], items: [] }, 'SET_ITEM_INFO'), itemInfo: createReducer({ combos: [], items: [] }, 'SET_ITEM_INFO'),
itemUnequip: createReducer(null, 'SET_ITEM_UNEQUIP'), itemUnequip: createReducer(null, 'SET_ITEM_UNEQUIP'),
nav: createReducer(null, 'SET_NAV'), nav: createReducer('team', 'SET_NAV'),
showNav: createReducer(null, 'SET_SHOW_NAV'), showNav: createReducer(null, 'SET_SHOW_NAV'),
ping: createReducer(null, 'SET_PING'), ping: createReducer(null, 'SET_PING'),
player: createReducer(null, 'SET_PLAYER'), player: createReducer(null, 'SET_PLAYER'),