是否可以在样式组件中运行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;
}
` : ''
}