diff --git a/app/views/CreateDiscussionView/index.tsx b/app/views/CreateDiscussionView/index.tsx
index 650d6753961..d76dde851ab 100644
--- a/app/views/CreateDiscussionView/index.tsx
+++ b/app/views/CreateDiscussionView/index.tsx
@@ -168,13 +168,14 @@ const CreateDiscussionView = ({ route, navigation }: ICreateChannelViewProps) =>
{isEncryptionEnabled ? (
- <>
+
}
additionalAccessibilityLabel={encrypted}
+ backgroundColor={colors.surfaceTint}
/>
- >
+
) : null}
{users.length > 0 ? : null}
diff --git a/app/views/CreateDiscussionView/styles.ts b/app/views/CreateDiscussionView/styles.ts
index d9607f71789..7fff8167a24 100644
--- a/app/views/CreateDiscussionView/styles.ts
+++ b/app/views/CreateDiscussionView/styles.ts
@@ -48,5 +48,8 @@ export default StyleSheet.create({
list: {
flex: 1,
maxHeight: '25%'
+ },
+ encryptionContainer: {
+ marginTop: 10
}
});