diff options
author | ilyayudovin <46264063+ilyayudovin@users.noreply.github.com> | 2020-10-10 01:05:06 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-10 01:05:06 +0300 |
commit | 40ac5922118015aae943872717730d7068976b1a (patch) | |
tree | 8affbbac3fa19cd43cc0f0730dcee80733fc2bfa /src/containers/PollCreation | |
parent | fcaddcd6ad8607d05279acdb87675de6180ac1cb (diff) | |
parent | 76e235f22f15b0590d2c6594f9c298d94ba59307 (diff) | |
download | which-ui-40ac5922118015aae943872717730d7068976b1a.tar.gz |
Merge pull request #105 from which-ecosystem/correction
Correction
Diffstat (limited to 'src/containers/PollCreation')
-rw-r--r-- | src/containers/PollCreation/PollCreation.tsx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/containers/PollCreation/PollCreation.tsx b/src/containers/PollCreation/PollCreation.tsx index 2e2bd06..b761c73 100644 --- a/src/containers/PollCreation/PollCreation.tsx +++ b/src/containers/PollCreation/PollCreation.tsx @@ -14,7 +14,6 @@ import { post } from '../../requests'; import { useFeed, useProfile } from '../../hooks/APIClient'; import { useAuth } from '../../hooks/useAuth'; - const useStyles = makeStyles(theme => ({ images: { height: theme.spacing(50), @@ -25,11 +24,11 @@ const useStyles = makeStyles(theme => ({ height: 100 }, description: { + fontSize: 14, padding: theme.spacing(1, 2) } })); - const PollCreation: React.FC = () => { const [description, setDescription] = useState<string>(''); const classes = useStyles(); @@ -84,7 +83,7 @@ const PollCreation: React.FC = () => { <Container maxWidth="sm" disableGutters> <Card elevation={3}> {user && <UserStrip user={user} />} - <Typography> + <Typography component="span"> <InputBase multiline fullWidth |