diff --git a/src/AppV2.js b/src/AppV2.js index 65811885..fb07891d 100644 --- a/src/AppV2.js +++ b/src/AppV2.js @@ -19,6 +19,8 @@ const Validators = lazy(() => import('v2/components/Validators')); const ValidatorsAll = lazy(() => import('v2/components/Validators/All')); const ValidatorDetail = lazy(() => import('v2/components/Validators/Detail')); const TourDeSol = lazy(() => import('v2/components/TourDeSol')); +const Blocks = lazy(() => import('v2/components/Blocks')); +const BlockDetail = lazy(() => import('v2/components/Blocks/Detail')); const useStyles = makeStyles(theme => ({ root: { @@ -44,6 +46,12 @@ const useStyles = makeStyles(theme => ({ justifyContent: 'flex-end', padding: '0 8px', ...theme.mixins.toolbar, + [theme.breakpoints.down('md')]: { + minHeight: 85, + }, + [theme.breakpoints.up('md')]: { + minHeight: 50, + }, }, })); @@ -63,6 +71,8 @@ const App = () => { + +