File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -588,7 +588,7 @@ export const getPseudoStyles = (
588
588
589
589
return css `
590
590
${ pseudoKey } {
591
- ${ isAfterOrBefore && `content: '${ content } '` } ;
591
+ ${ isAfterOrBefore && content !== undefined && `content: '${ content } '` } ;
592
592
${ getGenericStyles ( styles ) } ;
593
593
${ getTypographyStyles ( styles ) } ;
594
594
}
@@ -604,7 +604,6 @@ const getPseudoElementOrClassKeys = (styles?: CommonStyleType): CSSProp => {
604
604
const afterKey = '&::after' ;
605
605
const beforeKey = '&::before' ;
606
606
const backdropKey = '&::backdrop' ;
607
- const placeholderKey = '&::placeholder' ;
608
607
const passwordRevealButtonKey = '&::-ms-reveal' ;
609
608
const webkitInnerSpinButtonKey = '&::-webkit-inner-spin-button' ;
610
609
const webkitOuterSpinButtonKey = '&::-webkit-outer-spin-button' ;
You can’t perform that action at this time.
0 commit comments