jss
jss copied to clipboard
[jss-nested] container.indexOf is not a function
'@global a': {
'font-family': 'Source Sans Pro, sans-serif',
'font-weight': '600',
'color': 'white',
'&:focus': {
color: '#FF7EBF'
},
'&:hover': {
color: '#FF7EBF'
}
},
This code generate error container.indexOf is not a function. I am using default preset.
looks like a bug with nesting and inline globals.
As a workaround you can do this:
'@global': {
a: {
'color': 'white',
'&:focus': {
color: '#FF7EBF'
}
}
}