Skip to content
This repository was archived by the owner on Oct 11, 2022. It is now read-only.

Commit 985982a

Browse files
authored
Merge pull request #4328 from withspectrum/fix-things
Fix community composer and rep styling
2 parents f520c37 + 73d1358 commit 985982a

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/views/community/index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,8 @@ class CommunityView extends React.Component<Props, State> {
383383
// and is a member of the community, they should see a
384384
// new thread composer
385385
isLoggedIn &&
386-
selectedView === 'threads' &&
386+
(selectedView === 'threads' ||
387+
selectedView === 'trending-threads') &&
387388
userHasPermissions && (
388389
<ErrorBoundary fallbackComponent={null}>
389390
<ThreadComposer

src/views/navbar/style.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,8 @@ export const Reputation = styled.div`
216216
grid-area: icon;
217217
align-items: center;
218218
padding-right: 16px;
219+
font-size: 14px;
220+
font-weight: 700;
219221
`;
220222

221223
export const Logo = styled(Tab)`

0 commit comments

Comments
 (0)