MaterialUI AppBar存在差距

时间:2016-06-12 14:44:52

标签: css reactjs material-ui

这是我第一次使用Material UI(或前端世界)进行反应。它实际上很好,但我注意到我的标题中有白色空隙。

enter image description here

这是我的index.js加载MuiTheme:

const muiTheme = getMuiTheme({
  palette: {
    textColor: teal500,
  },
});

render(
  <MuiThemeProvider muiTheme={muiTheme}>
    <Provider store={store}>
      <Router history={browserHistory} routes={routes} />
    </Provider>
  </MuiThemeProvider>,
  document.getElementById('app')
);

我需要应用哪种样式?

谢谢!

1 个答案:

答案 0 :(得分:0)

您应该将body { margin: 0; }添加到CSS中。