_hover.scss 176 B

1234567891011
  1. #home{
  2. .content{
  3. p:last-child{
  4. a:hover{
  5. color: white;
  6. background-color: $green;
  7. transition: background-color 0.3s ease;
  8. }
  9. }
  10. }
  11. }