// Name: Testimonial // // Component: `testimonial` // // Modifiers: 'testimonial-reverse' // 'testimonial-top' // 'testimonial-carousel' // // ======================================================================== // Variables // ======================================================================== $testimonial-content-bg: $bg-color-base !default; $testimonial-content-border: $border-color-base !default; $testimonial-control-color: $gray-light !default; $testimonial-control-hover-color: $hover-color-base !default; // Component: Testimonial // ======================================================================== .testimonial { &-content { background-color: $testimonial-content-bg; border-radius: $border-radius; &:before { background-color: $testimonial-content-bg; } } &-control { a { color: $testimonial-control-color; &:hover { color: $testimonial-control-hover-color; } } } }