aboutsummaryrefslogtreecommitdiff
path: root/src/Feed
diff options
context:
space:
mode:
Diffstat (limited to 'src/Feed')
-rw-r--r--src/Feed/Feed.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Feed/Feed.tsx b/src/Feed/Feed.tsx
index 03ba6c0..ef82b38 100644
--- a/src/Feed/Feed.tsx
+++ b/src/Feed/Feed.tsx
@@ -7,9 +7,9 @@ interface PropTypes {
polls: Poll[],
}
-const usedStyles = makeStyles(() => ({
+const usedStyles = makeStyles(theme => ({
feed: {
- maxWidth: 600,
+ maxWidth: theme.spacing(75),
margin: '0 auto'
}
}));