Skip to content

Commit

Permalink
#237 - Removing horizontal overflow from wikilegis and apis
Browse files Browse the repository at this point in the history
  • Loading branch information
mlfaa committed Dec 15, 2021
1 parent 2f0a44e commit 1a0ef1d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/styles/pages/apisPageStyle.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ import { makeStyles } from '@material-ui/core/styles';
export const useStyles = makeStyles((theme) => ({
root: {
height: 'auto',
'@media (max-width: 1025px)': {
overflowX: 'hidden !important',
},
},
box: {
display: 'flex',
Expand Down
3 changes: 3 additions & 0 deletions src/styles/pages/wikilegisPageStyle.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ export const useStyles = makeStyles((theme) => ({
padding: '0px 0px 0px 16px',
marginTop: '40px',

'@media (max-width: 1025px)': {
overflowX: 'hidden !important',
},
[theme.breakpoints.up('sm')]: {
padding: '0px 0px 0px 35px',
marginTop: '48px',
Expand Down

0 comments on commit 1a0ef1d

Please sign in to comment.