Skip to content
Snippets Groups Projects
Commit 777d5319 authored by Lucas Eduardo Schoenfelder's avatar Lucas Eduardo Schoenfelder
Browse files

fixed responsivity

parent 9d5fe011
No related branches found
No related tags found
2 merge requests!57Merge of develop into master,!56Fixed buttons reportar, seguir, compartilhar, guardar and entrar (in comments...
...@@ -66,7 +66,7 @@ export default function PublicationPermissionsContent (props) { ...@@ -66,7 +66,7 @@ export default function PublicationPermissionsContent (props) {
{ {
questionsArr.map((question, index) => questionsArr.map((question, index) =>
question.id !== 4 && (question.status === 'active' && question.id !== 4) &&
<React.Fragment key={question.id}> <React.Fragment key={question.id}>
<Grid item xs={10}> <Grid item xs={10}>
<p>{question.description}</p> <p>{question.description}</p>
......
...@@ -204,6 +204,15 @@ const StyledAppBarContainer = styled.div` ...@@ -204,6 +204,15 @@ const StyledAppBarContainer = styled.div`
.botoes { .botoes {
display : flex; display : flex;
align-items : center; align-items : center;
@media screen and (max-width: 768px) {
justify-content : center !important;
}
}
.MuiFormControlLabel-root {
@media screen and (max-width: 768px) {
margin-left : 0 !important;
}
} }
} }
` `
......
...@@ -175,7 +175,7 @@ export default function UserPage(props) { ...@@ -175,7 +175,7 @@ export default function UserPage(props) {
direction="row" direction="row"
> >
<Grid item> <Grid item>
<Typography variant="h6"> <Typography variant="h6" onClick={(e)=>{handleChangeTab(e, 4)}}>
{loading ? ( {loading ? (
<CircularProgress size={20} /> <CircularProgress size={20} />
) : ( ) : (
...@@ -184,7 +184,7 @@ export default function UserPage(props) { ...@@ -184,7 +184,7 @@ export default function UserPage(props) {
</Typography> </Typography>
</Grid> </Grid>
<Grid item> <Grid item>
<Typography variant="h6"> <Typography variant="h6" onClick={(e)=>{handleChangeTab(e, 4)}}>
{loading ? ( {loading ? (
<CircularProgress size={20} /> <CircularProgress size={20} />
) : ( ) : (
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment