🎨 按钮浮层颜色调整

This commit is contained in:
zhangjinlong 2020-10-15 22:52:04 +08:00
parent 687f3864bd
commit f03dc29de1

View File

@ -564,7 +564,7 @@ const Container = (props: {
textAlign: 'center', textAlign: 'center',
bottom: -5, bottom: -5,
right: 16, right: 16,
background: 'gray', background: 'hsla(0,0%,88.2%,.7)',
padding: '10px', padding: '10px',
width: '279px', width: '279px',
display: 'block', display: 'block',
@ -572,7 +572,7 @@ const Container = (props: {
: { display: 'none' } : { display: 'none' }
} }
> >
<Button block danger onClick={() => handleDel(curPoint.id)}> <Button block type="primary" onClick={() => handleDel(curPoint.id)}>
</Button> </Button>
</div> </div>