-2

I want to give border radius on top side of arrows. As per given attached image.enter image description here

js fiddle link here

let me know

1 Answers1

0

https://jsfiddle.net/f6gqkodm/

Check this link I have updated .block-minicart:before styles to meet your needs

.minicart-wrapper .ui-dialog .block-minicart:before {
    top: -9px;
    right: 25px;
    border: 1px solid;
    border-color: #c1c1c1 #ffffff #ffffff #c1c1c1;
    z-index: 1;
    width: 17px;
    height: 17px;
    border-radius: 5px;
    transform: rotateZ(45deg);
    -webkit-transform: rotateZ(45deg);
    -moz-transform: rotateZ(45deg);
    -ms-transform: rotateZ(45deg);
    background: white;
}

enter image description here

Dharmesh Vekariya
  • 1,138
  • 2
  • 13
  • 31
satwik
  • 587
  • 5
  • 13