Skip to content

Commit

Permalink
decrease mobile view width breakpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
Puyodead1 committed Sep 4, 2023
1 parent 03e3e11 commit dc3fb2e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/ChannelSidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const Wrapper = styled(Container)`
flex: 0 0 240px;
background-color: var(--background-secondary);
@media (max-width: 1080px) {
@media (max-width: 810px) {
display: none;
}
`;
Expand Down
2 changes: 1 addition & 1 deletion src/components/GuildSidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const List = styled.ul`
flex: 0 0 48px;
align-items: center;
@media (max-width: 1080px) {
@media (max-width: 560px) {
display: none;
}
`;
Expand Down
2 changes: 1 addition & 1 deletion src/components/MemberList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const Container = styled.div`
background-color: var(--background-secondary);
height: 100%;
@media (max-width: 1080px) {
@media (max-width: 1050px) {
display: none;
}
`;
Expand Down
2 changes: 1 addition & 1 deletion src/components/messaging/ChatHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ const ActionItemsWrapper = styled.div`
margin-right: 15%;
// remove the temporary padding that moves it over the chat area on smaller screens where the member list is hidden
@media (max-width: 1080px) {
@media (max-width: 1050px) {
margin-right: auto;
}
`;
Expand Down

0 comments on commit dc3fb2e

Please sign in to comment.