I am working on ReactJS web app, and I am adding specific outline style, but the outline shows up when a user clicks on it using a mouse. How can I make the outline to appear only for tabbing?
const Test = styled.div`
&:focus {
outline: 1px solid red;
}
`;