diff --git a/app/mobile/src/dashboard/Dashboard.jsx b/app/mobile/src/dashboard/Dashboard.jsx index c063a1d3..2ec0007c 100644 --- a/app/mobile/src/dashboard/Dashboard.jsx +++ b/app/mobile/src/dashboard/Dashboard.jsx @@ -285,8 +285,8 @@ export function Dashboard(props) { - - { state.strings.close } + + { state.strings.close } @@ -316,8 +316,8 @@ export function Dashboard(props) { - - { state.strings.close } + + { state.strings.close } diff --git a/app/mobile/src/dashboard/Dashboard.styled.js b/app/mobile/src/dashboard/Dashboard.styled.js index 9f25b1f2..a6aa36fa 100644 --- a/app/mobile/src/dashboard/Dashboard.styled.js +++ b/app/mobile/src/dashboard/Dashboard.styled.js @@ -101,9 +101,21 @@ export const styles = StyleSheet.create({ display: 'flex', alignItems: 'center', }, - cancel: { + close: { borderWidth: 1, - borderColor: Colors.lightgrey, + borderColor: Colors.closeButton, + borderRadius: 4, + padding: 6, + marginRight: 8, + width: 92, + display: 'flex', + alignItems: 'center', + }, + closeText: { + color: Colors.closeButtonText, + }, + cancel: { + backgroundColor: Colors.cancelButton, borderRadius: 4, padding: 6, marginRight: 8, diff --git a/app/mobile/src/session/channels/Channels.jsx b/app/mobile/src/session/channels/Channels.jsx index 39db7c6c..170f6109 100644 --- a/app/mobile/src/session/channels/Channels.jsx +++ b/app/mobile/src/session/channels/Channels.jsx @@ -118,7 +118,7 @@ export function Channels({ cardId, channelId, navigation, openConversation, dmCh { state.contacts.length == 0 && ( - { state.strings.noContacts } + { state.strings.noContacts } )} { state.contacts.length > 0 && ( diff --git a/app/mobile/src/session/channels/Channels.styled.js b/app/mobile/src/session/channels/Channels.styled.js index 82ca29f8..8bf6b10d 100644 --- a/app/mobile/src/session/channels/Channels.styled.js +++ b/app/mobile/src/session/channels/Channels.styled.js @@ -89,8 +89,8 @@ export const styles = StyleSheet.create({ justifyContent: 'center', }, notfoundtext: { - fontSize: 18, - color: Colors.disabled, + fontSize: 20, + color: Colors.unsetText, }, columnbottom: { paddingLeft: 24, @@ -129,6 +129,9 @@ export const styles = StyleSheet.create({ marginTop: 16, height: 200, }, + empty: { + color: Colors.descriptionText, + }, emptyMembers: { width: '100%', borderWidth: 1,