sass @ at-root是否可以在样式组件中工作

时间:2018-06-29 12:56:41

标签: css reactjs sass styled-components react-component

是否可以在样式组件中运行sass @at-root?当前使用&选择父元素可以正常工作,但不幸的是@at-root似乎不起作用。

export const ButtonContainer = styled.div`
  display: block
  ${(props) => props.fixed ? `
    position: fixed
    right: 0
    bottom: 0
    left: 0
    z-index: 100
    width: 100%

    @at-root body {
      background-color: tomato;
    }
    ` : ''
}

0 个答案:

没有答案