_testimonials.scss 308 B

123456789101112131415
  1. .testimonial {
  2. display: block;
  3. background: $color-gray;
  4. border-radius: $border-radius-lg;
  5. padding: $gap-4;
  6. margin-bottom: $gap-4;
  7. color: inherit;
  8. box-shadow: $shadow-card-sm;
  9. transition: $transition-duration box-shadow;
  10. &:hover {
  11. color: inherit;
  12. box-shadow: $shadow-card-lg;
  13. }
  14. }