diff options
author | ilyayudovin <ilyayudovin123@gmail.com> | 2020-10-09 22:47:56 +0300 |
---|---|---|
committer | ilyayudovin <ilyayudovin123@gmail.com> | 2020-10-09 22:47:56 +0300 |
commit | 2c209a3f52648653fda853614609c76019e5a7d2 (patch) | |
tree | 064d89e96299db504c9081bd7c8238871d762572 /src/containers/PollCreation/PollCreation.tsx | |
parent | fcaddcd6ad8607d05279acdb87675de6180ac1cb (diff) | |
download | which-ui-2c209a3f52648653fda853614609c76019e5a7d2.tar.gz |
Add fontsize for description
Diffstat (limited to 'src/containers/PollCreation/PollCreation.tsx')
-rw-r--r-- | src/containers/PollCreation/PollCreation.tsx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/containers/PollCreation/PollCreation.tsx b/src/containers/PollCreation/PollCreation.tsx index 2e2bd06..2990213 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(); |