aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/components/decorators
diff options
context:
space:
mode:
authorjackyzha0 <[email protected]>2021-03-06 16:09:51 -0800
committerjackyzha0 <[email protected]>2021-03-06 16:09:51 -0800
commitdbf726d9e021a692254defdab8b993063b15354f (patch)
tree1853ac5edece80de76346df0bff47cda4e4310ae /frontend/src/components/decorators
parentfix modal zindex (diff)
downloadctrl-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.js2
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>
);
}