美文网首页
MUI style 写法

MUI style 写法

作者: 想溜了的蜗牛 | 来源:发表于2021-01-05 15:12 被阅读0次
  1. hover 样式
'&:hover': {
   background: "#f00",
},
  1. 当前节点下所有子元素共享的样式
exampleNode: {
        '& > *': {
            marginRight: theme.spacing(1),
            [theme.breakpoints.down('xs')]:{
                marginTop: theme.spacing(1),
            }
        }
    },

相关文章

网友评论

      本文标题:MUI style 写法

      本文链接:https://www.haomeiwen.com/subject/khrioktx.html