Answer the question
In order to leave comments, you need to log in
How to select the parent of a parent in JSS?
How to select parent of parent in jss ?
'@global': {
'.header-block': {
display: 'flex',
alignItems: 'center',
justifyContent: 'space-between',
'&&_open': {
display: 'flex',
flexDirection: 'column',
background: colors.black.hex,
width: '100%',
height: '100%',
position: 'fixed',
top: 0,
left: 0,
padding: '15px 20px 20px',
zIndex: 100,
boxSizing: 'border-box',
'& .header-block__menu': {
},
'& .header-block__btn': {
width: '100%'
}
},
Answer the question
In order to leave comments, you need to log in
As an option:
const mainSelector = '.header-block';
const styles = {
'@global': {
[mainSelector]: {
'&&_open': {
[`& ${mainSelector}__menu`]: {
},
[`& ${mainSelector}__btn`]: {
},
},
},
},
};
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question