diff --git a/src/components/ui/button/Button.tsx b/src/components/ui/button/Button.tsx index 1e3db7c..723936c 100644 --- a/src/components/ui/button/Button.tsx +++ b/src/components/ui/button/Button.tsx @@ -16,6 +16,9 @@ const Button: FunctionComponent = ({ label, style, color = 'green' }) => ...styles[color], ...style, }}> + {/* Some email clients don't apply a line-height rule until some text appears inside. + Add a zero-width space to ensure that text is always present, even if a is passed */} + ​ {label} );