The information is provided in the image attached, with all CSS code available on stackblitz.
I am looking to customize the Next and Prev buttons by having their borders match the inside boxes and be rounded. This will indicate to the user that there is a Next or Prev option available for clicking.
Currently, the issue I'm facing is that when clicking on the Next/Prev buttons, the border becomes bold and blue. This behavior may be due to the default browser settings (not certain).
/* CSS Code */
.pi,
.p-carousel-prev-icon {
display: none !important;
}
.pi-chevron-left:before {
content: '' !important;
}
::ng-deep .p-carousel .p-carousel-content .p-carousel-next::after {
width: 0.513rem;
height: 1.25rem;
font-size: 0.875rem;
font-family: Roboto;
transform: scale(2, 4);
}
/* More CSS Code... */