react-hartan
Version:
A simple components library for React
34 lines (30 loc) • 656 B
CSS
/* Testimonial Styling */
/* testimonial section container */
.testimonial {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 4.3rem;
border-radius: .5rem;
background-color: rgb(243, 238, 238);
padding: 1rem;
}
/* review content container */
.review {
font-size: 1.6rem;
font-weight: 500;
}
/* reviewer name container */
.reviewerName {
border-top: 2px solid rgb(46, 46, 46);
padding-top: 1rem;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.reviewerName p {
font-size: 1.25rem;
font-weight: 500;
}