mirror of
https://github.com/qdrant/landing_page.git
synced 2026-09-25 22:18:30 +02:00
30 lines
523 B
SCSS
30 lines
523 B
SCSS
@use '../helpers/functions' as *;
|
|
|
|
.enterprise-solutions-testimonials {
|
|
.testimonial-light {
|
|
&:first-of-type {
|
|
padding-top: $spacer * 5;
|
|
padding-bottom: 0;
|
|
}
|
|
|
|
&:last-of-type {
|
|
padding-top: $spacer * 2.5;
|
|
padding-bottom: $spacer * 5;
|
|
}
|
|
}
|
|
|
|
@include media-breakpoint-up(lg) {
|
|
.testimonial-light {
|
|
&:first-of-type {
|
|
padding-top: $spacer * 7.5;
|
|
}
|
|
|
|
&:last-of-type {
|
|
div.row {
|
|
flex-direction: row-reverse;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|