I am currently working on customizing the <p-calendar>
tag from primeng 6.1.1
. My goal is to have a blue circle appear when hovering over the month item.
I envision it looking like this:
https://i.sstatic.net/wZ41wm.png
However, what I am getting is more of an oval shape rather than a perfect circle. I tried using border-radius: 50% !important
.
Here is the code snippet from my datepicker.scss:
.ui-monthpicker-month {
border-radius: 50% !important;
text-decoration: none;
margin-top: 10px;
color: #73767b;
font-family: 'Muli', sans-serif;
padding: 0px 20px 0 20px;
}
.ui-monthpicker-month:hover {
background-color: #1474A4;
color: white;
}
I would appreciate any guidance on how to fix this issue.