I am currently utilizing the makeStyles
function in React, but I seem to be facing an issue where the content within the ::before
pseudo-element is not displaying. Strangely enough, when the content is an image it works fine, but text does not render.
Just for clarity, the ::before
element is completely absent from the rendering output.
cardPoint: {
alignSelf: 'center',
justifySelf: 'start',
maxWidth: '250px',
position: 'relative',
"&::before": {
content: 'Look at me',
display: 'inline-block',
color: '#000',
},
}