Is there a way to manipulate the :before pseudo element when hovering over the main element?
My goal is for the pseudo element to change its height when I hover over the main element.
This is how my code looks:
HTML
<div class="object"></div>
CSS
.object:hover object:before {
height: 30px;
}