diff --git a/net/web/src/constants/Colors.js b/net/web/src/constants/Colors.js
index b8093f7d..851bfe46 100644
--- a/net/web/src/constants/Colors.js
+++ b/net/web/src/constants/Colors.js
@@ -8,6 +8,8 @@ const Colors = {
divider: '#dddddd',
encircle: '#cccccc',
alert: '#ff8888',
+ enabled: '#444444',
+ disabled: '#aaaaaa',
};
export default Colors;
diff --git a/net/web/src/session/bottomNav/BottomNav.jsx b/net/web/src/session/bottomNav/BottomNav.jsx
index 30a71b7e..c306b3b7 100644
--- a/net/web/src/session/bottomNav/BottomNav.jsx
+++ b/net/web/src/session/bottomNav/BottomNav.jsx
@@ -49,12 +49,10 @@ export function BottomNav({ state, actions }) {
)}
{ (state.cards || state.contact || state.profile) && (
-
+
@@ -69,12 +67,10 @@ export function BottomNav({ state, actions }) {
)}
{ !state.profile && (
-
+
@@ -89,12 +85,10 @@ export function BottomNav({ state, actions }) {
)}
{ ((!state.cards && !state.contact) || state.profile) && (
-
+
diff --git a/net/web/src/session/bottomNav/BottomNav.styled.js b/net/web/src/session/bottomNav/BottomNav.styled.js
index 74da0748..8d8b993d 100644
--- a/net/web/src/session/bottomNav/BottomNav.styled.js
+++ b/net/web/src/session/bottomNav/BottomNav.styled.js
@@ -9,7 +9,6 @@ export const BottomNavWrapper = styled.div`
align-items: center;
justify-content: center;
background-color: ${Colors.formBackground};
- font-size: 24px;
.nav-item {
width: 33%;
@@ -18,16 +17,20 @@ export const BottomNavWrapper = styled.div`
.nav-inactive {
width: 100%;
height: 100%;
+ color: ${Colors.disabled};
padding-top: 8px;
padding-bottom: 8px;
+ font-size: 20px;
+ cursor: pointer;
}
.nav-active {
width: 100%;
height: 100%;
- background-color: ${Colors.formHover};
+ color: ${Colors.enabled};
padding-top: 8px;
padding-bottom: 8px;
+ font-size: 24px;
}
.nav-div-right {
@@ -47,10 +50,6 @@ export const BottomNavWrapper = styled.div`
height: 100%;
border-left: 1px solid ${Colors.divider};
}
-
- .nav-button {
- cursor: pointer;
- }
}
`;