aboutsummaryrefslogtreecommitdiff
path: root/src/pages/NotificationsPage/NotificationsPage.tsx
diff options
context:
space:
mode:
authorEugene Sokolov <eug-vs@keemail.me>2020-07-04 00:12:42 +0300
committerGitHub <noreply@github.com>2020-07-04 00:12:42 +0300
commited0117c9c7a60b285eb8e47bbd925e222184df51 (patch)
treeb97f00e24f7ef10db191954588534f59644fdabc /src/pages/NotificationsPage/NotificationsPage.tsx
parentaf51f6c8a6fabdd8e578e13599b33f121f483a52 (diff)
parent7b698a68cb3d332aecfebf7a85b2ac56f9448bea (diff)
downloadwhich-ui-ed0117c9c7a60b285eb8e47bbd925e222184df51.tar.gz
Merge pull request #61 from which-ecosystem/mobile-adaptation
Adapt application for mobile devices
Diffstat (limited to 'src/pages/NotificationsPage/NotificationsPage.tsx')
-rw-r--r--src/pages/NotificationsPage/NotificationsPage.tsx5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/pages/NotificationsPage/NotificationsPage.tsx b/src/pages/NotificationsPage/NotificationsPage.tsx
index d162eff..3c39ba3 100644
--- a/src/pages/NotificationsPage/NotificationsPage.tsx
+++ b/src/pages/NotificationsPage/NotificationsPage.tsx
@@ -2,11 +2,12 @@ import React from 'react';
import { makeStyles } from '@material-ui/core/styles';
import { Typography } from '@material-ui/core';
-const useStyles = makeStyles({
+const useStyles = makeStyles(theme => ({
root: {
+ marginTop: theme.spacing(40),
textAlign: 'center'
}
-});
+}));
const NotificationsPage: React.FC = () => {
const classes = useStyles();