I trying to add a :hover
pseudo selector using Less. But every time I try It adds a space between the class name and the pseudo selector.
I was wondering if anyone knows how to fix this issue. Any help would be really appreciated!
Below is my code
Less Code
.well{
display: inline-block;
text-decoration: none;
color: #000;
:hover{
color: #000;
}
}
Generated CSS code
.well :hover {
color: #000;
}