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

Commit df12870

Browse files
authored
Merge pull request #5012 from withspectrum/mobile-polish
Small polish
2 parents 2dc7cb3 + a2f292c commit df12870

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

cypress/integration/user_spec.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,6 @@ describe('User View', () => {
3939
);
4040
communities.forEach(community => {
4141
cy.contains(community.name);
42-
const userCommunity = usersCommunities.find(
43-
({ communityId }) => communityId === community.id
44-
);
4542
});
4643
});
4744
});

src/components/nextPageButton/style.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ export const HasNextPage = styled(Link)`
99
align-items: center;
1010
justify-content: center;
1111
text-decoration: none;
12+
background: ${theme.bg.default};
1213
width: 100%;
1314
`;
1415

src/views/threadSlider/style.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,10 @@ export const ThreadBackground = styled.div`
4343
width: ${MAX_WIDTH}px;
4444
left: 50%;
4545
transform: translateX(calc(-50%));
46+
47+
@media (max-width: ${MEDIA_BREAK}px) {
48+
width: 100%;
49+
}
4650
`;
4751

4852
export const ThreadContainer = styled.div`

0 commit comments

Comments
 (0)