Material UI Snackbarを使用しています。マテリアルUIはあまり新しくはありませんが、どういうわけか、問題を解決できません。つまり、画面上部にスナップバーが重なって表示されています。私はそれを修正するために別の方法を試みたが、運がない。誰かが私を助けてくれますか?あなたの素早い応答を感謝します。 Snackbarコンポーネントとそのボディスタイルの下にあります。また、参考までにScreenshotを見つけてください。単独のスクリーンショットからMaterial UI Snackbar overlaps
bodyStyle:{
border: "2px solid #ffffff",
minWidth: '50%',
maxWidth: '100%',
flexGrow: 0,
height:'55px',
backgroundColor: 'transparent',
fontFamily: "Open Sans,Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif",
fontStyle: 'normal',
fontWeight: 400,
fontSize: 16
}
snackbarfromTop: {
top: 0,
color: white,
bottom: 'auto',
}
<Snackbar
open={this.state.open}
message={this.state.error}
autoHideDuration={4000}
bodyStyle={myTheme.bodyStyle}
action="Close"
onRequestClose={this.handleRequestClose}
onActionTouchTap={this.handleRequestClose}
style={myTheme.snackbarfromTop}
/>
これは質問に対する回答ではありません。十分な[評判](https://stackoverflow.com/help/whats-reputation)があれば、[投稿にコメントする]ことができます(https://stackoverflow.com/help/privileges/comment)。代わりに、[質問者からの明確化を必要としない回答を提供する](https://meta.stackexchange.com/questions/214173/why-do-i-need-50-reputation-to-comment-what-can- i-do-代わりに)。 - [レビューの投稿](/レビュー/低品質の投稿/ 18939556) – diceler
あなたは正しいです、固定された回答、ありがとう – dauffret