https://i.sstatic.net/Mkb8Z.png
Is there a way to prevent my outline from having rounded corners as it expands during the animation?
Note: The issue seems to be present on Linux and MS Edge, but works fine on Mozilla Firefox. Any solutions for MS Edge users?
.btn {
width: 20%;
height: 15%;
font-size: larger;
border: none;
background-color: darkgrey;
transition: outline-offset 1s;
}
.btn.border-pop:hover {
outline: solid darkgrey;
outline-offset: 10px;
}