如图所示,左侧为正常样式,右侧为添加效果后的样式
只需要给div添加以下class样式,主要实现效果在&:hover里面
.component-item {
display: flex;
align-items: center;
width: 50px;
height: 50px;
border: 1px solid #f0f0f0;
border-radius: 4px;
box-sizing: border-box;
overflow: hidden;
margin-bottom: 5px;
margin-left: 15px;
&:hover {
cursor: move;
box-shadow: 0 4px 16px rgb(0, 0, 0);
}
}