且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

材质UI全局CSS变量

更新时间:2023-12-04 21:36:46

"createMuiTheme"函数接受键集有限的对象.(调色板,版式,间距等)

"createMuiTheme" function accepts object with limited set of keys.(palette, Typography, spacing...etc)

您只能使用普通对象.

const theme = {
  shadowing: {
     boxShadow: "0 2px 5px -1px rgba(0, 0, 0, 0.3)",
  }
};