diff --git a/app/components/post_draft/read_only/index.tsx b/app/components/post_draft/read_only/index.tsx index 028cca961..a46b88400 100644 --- a/app/components/post_draft/read_only/index.tsx +++ b/app/components/post_draft/read_only/index.tsx @@ -15,6 +15,9 @@ interface ReadOnlyProps { } const getStyle = makeStyleSheetFromTheme((theme: Theme) => ({ + wrapper: { + backgroundColor: theme.centerChannelBg, + }, background: { backgroundColor: changeOpacity(theme.centerChannelColor, 0.04), }, @@ -46,26 +49,28 @@ const ReadOnlyChannnel = ({testID}: ReadOnlyProps) => { const theme = useTheme(); const style = getStyle(theme); return ( - - + - - - - + + + + + + ); };