frontend add

This commit is contained in:
shinmj
2021-10-21 09:03:17 +09:00
parent 8caa4bbc5a
commit cb9d50511e
443 changed files with 88282 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
import { createTheme } from '@material-ui/core/styles'
// declare module '@material-ui/core/styles/createBreakpoints' {
// interface BreakpointOverrides {
// xs: false // removes the `xs` breakpoint
// sm: false
// md: false
// lg: false
// xl: false
// tablet: true // adds the `tablet` breakpoint
// laptop: true
// desktop: true
// }
// }
const theme = createTheme({
breakpoints: {
values: {
xs: 0,
sm: 640,
md: 1024,
lg: 1280,
xl: 1920,
},
},
})
export default theme