I'm using material ui
I have a floating action button and I want to show it a specific place that would not change with scroll,
and also I want to know if it is a fine problem
here is the code
const floatingMenuButtonStyle = {
backgroundColor: '#DEEAF6',
color: '#8A3473',
alignSelf: 'flex-end',
position: 'fixed',
bottom: '8%',
right: '9%'
here is floating action button
<Fab
style={floatingMenuButtonStyle}
aria-label="add"
children={<AddIcon fontSize='default' />}></Fab>
}
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…