.menu_item添加点击效果-右箭头
最终结果
.menu_item.is-active {
background-color: rgba(61, 126, 255, 0.1);
span {
color: #3D7EFF;
}
}
.menu_item.is-active::after{
display: inline-block;
content: " ";
height: 7px;
width: 7px;
border-width: 2px 2px 0 0;
border-color: #3e9afe;
border-style: solid;
transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
position: absolute;
top: 43%;
left: 150px;
}