Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

how to add hover effect in emotion

const Button = styled.div`
  background-color: green;
  color: white;
 /*  like scss, you can add hover effect */
  &:hover {
    display: block;
  }
`;
 
PREVIOUS NEXT
Tagged: #add #hover #effect #emotion
ADD COMMENT
Topic
Name
3+3 =