I've been developing a ReactJS web application and I'm customizing the outline style for specific elements. The problem is that the outline is being displayed when a user clicks on it with a mouse. Is there a way to make the outline visible only when tabbing through the elements?
const CustomElement = styled.div`
&:focus {
outline: 1px solid red;
}
`;