Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated input form's alignment successfully #465

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
7 changes: 5 additions & 2 deletions src/components/UserDetailForm/styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,23 @@ import { makeStyles } from "@material-ui/core/styles"

const Styles = makeStyles(theme => ({
container: {
[theme.breakpoints.down("sm")]: {
[theme.breakpoints.down("sm")]:
{
width: "80%",
margin: "10px 35px",
padding: "20px 0px",
},
width: "80%",
height:"100%",
paddingTop:"400px",
padding: "25px 150px",
margin: "20px 100px",
},
headerStyle: {
marginBottom: "20px",
},
textFieldStyle: {
width: "70%",
width: "100%",
},
inputContainer: {
margin: "10px",
Expand Down