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

Commit 26ce2ec

Browse files
committed
style(media-query): improve overflow
1 parent a90cbf3 commit 26ce2ec

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

components/JobItem/styles/company_info.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export const BaseInfo = styled.div`
1616
margin-bottom: 6px;
1717
${cs.media.mobile`
1818
max-width: 75%;
19-
`};
19+
`};
2020
`
2121
export const CompanyLogo = styled(Img)`
2222
width: 50px;

containers/Comments/styles/comments_list.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,10 @@ export const CommentBodyInfo = styled.div`
112112
`
113113
export const CommentContent = styled.div`
114114
font-size: 0.9rem;
115+
116+
${cs.media.mobile`
117+
max-width: 250px;
118+
`};
115119
`
116120
export const CommentFooter = styled.div`
117121
${cs.flex()};

containers/ThemeWrapper/GlobalStyle.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@ const GlobalStyle = createGlobalStyle`
1515
html {
1616
background-color: ${theme('htmlBg')};
1717
}
18+
body {
19+
${cs.media.mobile`
20+
position: relative;
21+
`};
22+
}
1823
*::-moz-selection {
1924
background-color: ${theme('selectionBg')} !important;
2025
}

0 commit comments

Comments
 (0)