Skip to content

Commit

Permalink
Ajuste do layout
Browse files Browse the repository at this point in the history
  • Loading branch information
rtenorioh committed Sep 15, 2022
1 parent 9721da1 commit 6a92830
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 6 deletions.
3 changes: 2 additions & 1 deletion frontend/src/pages/Connections/index.js
Expand Up @@ -44,7 +44,8 @@ import toastError from "../../errors/toastError";
const useStyles = makeStyles(theme => ({
mainPaper: {
flex: 1,
padding: theme.spacing(1),
padding: theme.spacing(2),
margin: theme.spacing(1),
overflowY: "scroll",
...theme.scrollbarStyles,
},
Expand Down
3 changes: 2 additions & 1 deletion frontend/src/pages/Contacts/index.js
Expand Up @@ -94,7 +94,8 @@ const reducer = (state, action) => {
const useStyles = makeStyles((theme) => ({
mainPaper: {
flex: 1,
padding: theme.spacing(1),
padding: theme.spacing(2),
margin: theme.spacing(1),
overflowY: "scroll",
...theme.scrollbarStyles,
},
Expand Down
3 changes: 2 additions & 1 deletion frontend/src/pages/Queues/index.js
Expand Up @@ -31,7 +31,8 @@ import ConfirmationModal from "../../components/ConfirmationModal";
const useStyles = makeStyles((theme) => ({
mainPaper: {
flex: 1,
padding: theme.spacing(1),
padding: theme.spacing(2),
margin: theme.spacing(1),
overflowY: "scroll",
...theme.scrollbarStyles,
},
Expand Down
3 changes: 2 additions & 1 deletion frontend/src/pages/QuickAnswers/index.js
Expand Up @@ -85,7 +85,8 @@ const reducer = (state, action) => {
const useStyles = makeStyles((theme) => ({
mainPaper: {
flex: 1,
padding: theme.spacing(1),
padding: theme.spacing(2),
margin: theme.spacing(1),
overflowY: "scroll",
...theme.scrollbarStyles,
},
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/Tickets/index.js
Expand Up @@ -19,6 +19,7 @@ const useStyles = makeStyles((theme) => ({
// padding: theme.spacing(4),
height: `calc(100% - 48px)`,
overflowY: "hidden",
margin: theme.spacing(1),
},

chatPapper: {
Expand Down Expand Up @@ -54,7 +55,6 @@ const useStyles = makeStyles((theme) => ({
alignItems: "center",
height: "100%",
textAlign: "center",
borderRadius: 0,
},
ticketsManager: {},
ticketsManagerClosed: {
Expand Down
3 changes: 2 additions & 1 deletion frontend/src/pages/Users/index.js
Expand Up @@ -77,7 +77,8 @@ const reducer = (state, action) => {
const useStyles = makeStyles((theme) => ({
mainPaper: {
flex: 1,
padding: theme.spacing(1),
padding: theme.spacing(2),
margin: theme.spacing(1),
overflowY: "scroll",
...theme.scrollbarStyles,
},
Expand Down

0 comments on commit 6a92830

Please sign in to comment.