Skip to content

Commit 18b95ce

Browse files
authored
Making table responsive (#124)
1 parent 6ebedca commit 18b95ce

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

package-lock.json

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Stops.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ const Stops = () => {
136136
Stops
137137
</ListSubheader>
138138
<div style={{ display: 'flex', height: '100%' }}>
139-
<div style={{ flexGrow: 1 }}>
139+
<div style={{ flexGrow: 1, width: '100%' }}>
140140
<DataGrid
141141
sx={{
142142
backgroundColor: 'white',

src/theme.js

+5
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,11 @@ const theme = createTheme({
3030
}
3131
}
3232
}
33+
},
34+
mixins: {
35+
MuiDataGrid: {
36+
containerBackground: blueGrey[50]
37+
}
3338
}
3439
})
3540

0 commit comments

Comments
 (0)