From a81b4ccc2b723a5e3926c44a1e4d262c37de81a2 Mon Sep 17 00:00:00 2001 From: ntr Date: Mon, 3 Jun 2019 15:03:38 +1000 Subject: [PATCH] button size --- WORKLOG.md | 1 - client/assets/styles/styles.mobile.css | 5 ++--- client/src/events.jsx | 1 - client/src/reducers.jsx | 2 +- 4 files changed, 3 insertions(+), 6 deletions(-) diff --git a/WORKLOG.md b/WORKLOG.md index 6f92f453..2b63b924 100644 --- a/WORKLOG.md +++ b/WORKLOG.md @@ -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 diff --git a/client/assets/styles/styles.mobile.css b/client/assets/styles/styles.mobile.css index 636cafb2..75a4baed 100644 --- a/client/assets/styles/styles.mobile.css +++ b/client/assets/styles/styles.mobile.css @@ -9,7 +9,7 @@ "main main"; } - button { + #mnml button { font-size: 8pt; } @@ -42,5 +42,4 @@ .login { width: 100%; } - -} \ No newline at end of file +} diff --git a/client/src/events.jsx b/client/src/events.jsx index 8b000bf0..5e13ac46 100644 --- a/client/src/events.jsx +++ b/client/src/events.jsx @@ -81,7 +81,6 @@ function registerEvents(store) { function setAccount(account) { store.dispatch(actions.setAccount(account)); - store.dispatch(actions.setNav('team')); } function clearCombiner() { diff --git a/client/src/reducers.jsx b/client/src/reducers.jsx index e8bb14f8..4cf8e721 100644 --- a/client/src/reducers.jsx +++ b/client/src/reducers.jsx @@ -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'),