Change opacity of title on hover

Use this CSS code

div[class*="card-content__CardContentTitle"]:hover {
   opacity: 0.5;
}

1 Like