diff options
| author | jackyzha0 <[email protected]> | 2021-03-06 16:09:51 -0800 |
|---|---|---|
| committer | jackyzha0 <[email protected]> | 2021-03-06 16:09:51 -0800 |
| commit | dbf726d9e021a692254defdab8b993063b15354f (patch) | |
| tree | 1853ac5edece80de76346df0bff47cda4e4310ae /frontend/src/components/decorators | |
| parent | fix modal zindex (diff) | |
| download | ctrl-v-dbf726d9e021a692254defdab8b993063b15354f.tar.xz ctrl-v-dbf726d9e021a692254defdab8b993063b15354f.zip | |
update watermark styling
Diffstat (limited to 'frontend/src/components/decorators')
| -rw-r--r-- | frontend/src/components/decorators/CharLimit.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/components/decorators/CharLimit.js b/frontend/src/components/decorators/CharLimit.js index fcf14d0..3d1d981 100644 --- a/frontend/src/components/decorators/CharLimit.js +++ b/frontend/src/components/decorators/CharLimit.js @@ -18,7 +18,7 @@ const Chars = styled.p` const CharLimit = (props) => { return ( - <Chars {...props} >{props.maxLength - props.content.length}/{props.maxLength}</Chars> + <Chars {...props}>{props.maxLength - props.content.length}/{props.maxLength}</Chars> ); } |