Skip to content

Commit 1fb61c6

Browse files
committed
Merge branch 'archis-dev' of yadneshgharat.gitlab.com:arjunpanwar85/reception_frontend_ui into yadnesh-dev
2 parents a569bcd + f7e15e4 commit 1fb61c6

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

src/features/SalesAndOrganisation/CheckInPointsView.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const useStyles = makeStyles((theme: Theme) =>
1919
paper: {
2020
backgroundColor: '#E7ECF6',
2121
borderRadius: theme.shape.borderRadius - 5,
22-
marginRight: 30,
22+
// marginRight: 30,
2323
paddingRight: 150
2424
},
2525
})
@@ -85,7 +85,7 @@ const CheckInPointsView: FunctionComponent<Props> = (props) => {
8585
}, [dispatch])
8686

8787
return (
88-
<Grid item xs style={{height: "100%"}}>
88+
<Grid item xs={12} style={{ marginRight: 30}}>
8989
<Paper className={classes.paper}>
9090
<Box display="flex" justifyContent="space-between" style={{ paddingTop: '37px', paddingLeft: '30px', paddingBottom: '25.5px'}} >
9191
<SearchInput hidden placeholder="Search Employees by name, email or mobile" width={353} />

src/features/SalesAndOrganisation/SiteForm.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ const SiteForm: FunctionComponent<Props> = (props) => {
103103

104104

105105
return (
106-
<Grid item style={{ height: '80%', width: '90%' }}>
106+
<Grid item xs={12} style={{ marginRight: 30 }}>
107107
<Paper className={classes.paper}>
108108
<form onSubmit={handleSubmit}>
109109
<div className={classes.header}>

src/features/SalesAndOrganisation/SitesView.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const useStyles = makeStyles((theme: Theme) =>
1919
paper: {
2020
backgroundColor: '#E7ECF6',
2121
borderRadius: theme.shape.borderRadius - 5,
22-
marginRight: 30,
22+
// marginRight: 30,
2323
paddingRight: 150
2424
},
2525
})
@@ -99,7 +99,7 @@ const SitesView: FunctionComponent<Props> = (props) => {
9999
}, [dispatch])
100100

101101
return (
102-
<Grid item xs style={{ height: "100%", marginTop: '22px' }}>
102+
<Grid item xs={12} style={{ marginRight: '30px' }}>
103103
<Paper className={classes.paper}>
104104
<Box display="flex" justifyContent="space-between" style={{ paddingTop: '38px', paddingBottom: '26px' }}>
105105
<SearchInput placeholder="Search Employees by name, email or mobile" width={354} style={{ paddingLeft: '30px' }} />

src/features/Settings/DeviceForm.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ const DeviceForm: FunctionComponent<Props> = (props) => {
140140

141141

142142
return (
143-
<Grid item style={{ height: '80%', width: '90%' }}>
143+
<Grid item xs={12} style={{ marginRight: 30 }}>
144144
<Paper className={classes.paper}>
145145
<form onSubmit={handleSubmit}>
146146
<div className={classes.header}>

src/features/UserManagement/UserManagementView.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ const useStyles = makeStyles((theme: Theme) =>
1818
backgroundColor: '#E7ECF6',
1919
height: '100%',
2020
borderRadius: theme.shape.borderRadius - 5,
21-
marginRight: 30,
22-
paddingRight: 200,
21+
// marginRight: 30,
22+
// paddingRight: 200,
2323

2424
'& .MuiTableCell-root': {
2525
borderBottom: '1px solid #192949',
@@ -114,7 +114,7 @@ const UserManagementView: FunctionComponent<Props> = (props) => {
114114
}
115115

116116
return (
117-
<Grid item xs style={{height: "100%"}}>
117+
<Grid item xs={12} style={{ marginRight: 30 }}>
118118
<Paper className={classes.paper}>
119119
<div className={classes.header}>
120120
<ArrowBackIos className={classes.arrowBack} onClick={() => props.history.push('/')}/>

0 commit comments

Comments
 (0)