I want to add a scale
animation to a bootstrap button, but the text appears blurry. I've tried all the solutions mentioned here. How can I resolve this issue?
Below is the code snippet (text is slightly less blurry in the snippet compared to my project):
button.btn-outline-dark{
margin-top: 6%;
width:30%;
height: 17%;
color: black;
}
button.btn-outline-dark:hover{
transition: all .2s ease-in-out;
transform: scale(1.1);
-webkit-font-smoothing: subpixel-antialiased;
backface-visibility: hidden;
-webkit-filter: blur(0);
}
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<button type="button" class="btn btn-outline-dark" data-toggle="modal" data-target="#exampleModal">
Blurry Text
</button>