+
+
{projectName}
diff --git a/client/routes.jsx b/client/routes.jsx
index 92c3f2b3..308877e5 100644
--- a/client/routes.jsx
+++ b/client/routes.jsx
@@ -23,7 +23,7 @@ const checkAuth = (store) => {
store.dispatch(getUser());
};
-// This short-circuit seems unnecessary - using the mobile
navigator (future) should prevent this from being called
+// TODO: This short-circuit seems unnecessary - using the mobile
navigator (future) should prevent this from being called
const onRouteChange = (store) => {
const path = window.location.pathname;
if (path.includes('/mobile')) return;
diff --git a/client/theme.js b/client/theme.js
index 561fd835..cc9cb48f 100644
--- a/client/theme.js
+++ b/client/theme.js
@@ -88,6 +88,13 @@ export default {
Icon: {
default: grays.middleGray,
hover: grays.darker
+ },
+ Panel: {
+ default: {
+ foreground: colors.black,
+ background: grays.light,
+ border: grays.middleLight,
+ },
}
},
[Theme.dark]: {
@@ -120,6 +127,13 @@ export default {
Icon: {
default: grays.middleLight,
hover: grays.lightest
+ },
+ Panel: {
+ default: {
+ foreground: grays.light,
+ background: grays.dark,
+ border: grays.middleDark,
+ },
}
},
[Theme.contrast]: {
@@ -152,6 +166,13 @@ export default {
Icon: {
default: grays.mediumLight,
hover: colors.yellow
+ },
+ Panel: {
+ default: {
+ foreground: grays.light,
+ background: grays.dark,
+ border: grays.middleDark,
+ },
}
},
};