Skip to content
This repository has been archived by the owner on Jul 22, 2020. It is now read-only.

Commit

Permalink
fix: qa feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
manuel-calavera authored and sunnygleason committed Jul 25, 2019
1 parent 5496f37 commit 2fb51ac
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
3 changes: 2 additions & 1 deletion src/v2/components/NavBar/styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ export default makeStyles(theme => ({
listRoot: {
width: 88,
transition: '.15s ease-in-out',
overflow: 'hidden',
overflowX: 'hidden',
overflowY: 'auto',
'&:hover': {
width: 225,
},
Expand Down
12 changes: 9 additions & 3 deletions src/v2/components/Validators/styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default makeStyles(theme => ({
},
changes: {
display: 'flex',
justifyContent: 'space-between',
justifyContent: 'center',
alignItems: 'center',
width: '100%',
padding: '0 20px',
Expand All @@ -23,14 +23,14 @@ export default makeStyles(theme => ({
'&:not(:last-child)': {
marginBottom: 15,
},
[theme.breakpoints.down('md')]: {
[theme.breakpoints.down('sm')]: {
flex: 1,
'&:not(:last-child)': {
marginBottom: 0,
marginRight: 10,
},
},
[theme.breakpoints.down('sm')]: {
[theme.breakpoints.down('xs')]: {
flex: 1,
'&:not(:last-child)': {
marginRight: 0,
Expand All @@ -47,5 +47,11 @@ export default makeStyles(theme => ({
stats: {
display: 'flex',
flexDirection: 'column',
[theme.breakpoints.down('sm')]: {
flexDirection: 'row',
},
[theme.breakpoints.down('xs')]: {
flexDirection: 'column',
},
},
}));

0 comments on commit 2fb51ac

Please sign in to comment.