const styles = () =>
createStyles({
h: {
'&::before': {
content: '"some content"',
display: 'block',
height: 60,
marginTop: -60
}
}
});
'&::before': {
content: '""', // "''" will also work.
...
}
'&::before': {
content: '',
...
}
.makeStyles-content-154:before {
content: ;
...
}