Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@ const Complain = () => {
<Grid
item
container
alignItems="center"
direction="row"
justifyContent="space-between"
justifyContent="center"
classes={{ root: classes.wrapper }}
>
<Grid item>
Expand Down Expand Up @@ -75,20 +76,25 @@ const Complain = () => {
})
}}
/>

<br />
<br />

</Grid>

</Grid>
</Grid>
</Grid>
<Grid item>
<Grid
container
direction="column"
classes={{ root: classes.bottomWrapper }}
>
>
<Grid item>
<Typography variant="h4">
Username related to the complaint(optional)
</Typography>

</Grid>
<Grid item>
<TextField
Expand All @@ -104,10 +110,11 @@ const Complain = () => {
["name"]: e.target.value,
})
}}
/>
/>
</Grid>
</Grid>
</Grid>
</Grid>
<Grid item>
<Button classes={{ root: classes.btnStyle }} onClick={btnHandler}>
<Typography variant="h3">Submit</Typography>
Expand All @@ -117,4 +124,4 @@ const Complain = () => {
)
}

export default Complain
export default Complain
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ const Styles = makeStyles(theme => ({
},
textField: {
width: "350px",
marginBottom:"10px"
},
space: {
paddingBottom: "5px",
Expand All @@ -42,7 +43,7 @@ const Styles = makeStyles(theme => ({
borderRadius: 10,
backgroundColor: theme.palette.primary.light,
textTransform: "none",
"&:hover": { backgroundColor: theme.palette.primary.light },
"&:hover": { backgroundColor: "theme.pallete.primary.light" },
},
"@global": {
".MuiInput-underline:before, .MuiInput-underline:hover:not(.Mui-disabled):before": {
Expand All @@ -54,4 +55,4 @@ const Styles = makeStyles(theme => ({
},
}))

export default Styles
export default Styles