V
V
Vladimir Golub2019-05-21 15:56:41
css
Vladimir Golub, 2019-05-21 15:56:41

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

1 answer(s)
A
Anton Spirin, 2019-05-21
@RazerVG

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 question

Ask a Question

731 491 924 answers to any question