responsive stuff

This commit is contained in:
2025-06-17 11:30:13 -07:00
parent 4a389ed8cf
commit e45ddf0c4c
3 changed files with 23 additions and 3 deletions

13
dist/app.css vendored
View File

@@ -12653,12 +12653,22 @@ footer.sub-footer {
.testimonials-section .testimonials .slick-arrow.slick-next {
right: 4rem;
}
@media (max-width: 767.98px) {
.testimonials-section .testimonials .slick-arrow.slick-next {
right: 2rem;
}
}
.testimonials-section .testimonials .slick-arrow.slick-next:before {
content: "";
}
.testimonials-section .testimonials .slick-arrow.slick-prev {
left: 4rem;
}
@media (max-width: 767.98px) {
.testimonials-section .testimonials .slick-arrow.slick-prev {
left: 2rem;
}
}
.testimonials-section .testimonials .slick-arrow.slick-prev:before {
content: "";
}
@@ -12710,7 +12720,8 @@ footer.sub-footer {
}
@media (max-width: 767.98px) {
.testimonials-section .testimonials .testimonial .quote {
font-size: 16px;
font-size: 20px;
line-height: 24px;
}
}
.testimonials-section .testimonials .testimonial .person-details {

View File

@@ -1,4 +1,4 @@
{
"/app.js": "/app.js?id=8af0c9c0d989b79afe124f8138dc1a63",
"/app.css": "/app.css?id=5873c4fef1af7d146a9d3805e543e88d"
"/app.css": "/app.css?id=9c6c128de14d4fb5a3e1c5ce08e8ba82"
}

View File

@@ -30,6 +30,10 @@
&.slick-next {
right: 4rem;
@include media-breakpoint-down(md) {
right: 2rem;
}
&:before {
content: ""
}
@@ -38,6 +42,10 @@
&.slick-prev {
left: 4rem;
@include media-breakpoint-down(md) {
left: 2rem;
}
&:before {
content: ""
}
@@ -105,7 +113,8 @@
margin-bottom: 3rem;
@include media-breakpoint-down(md) {
font-size: 16px;
font-size: 20px;
line-height: 24px;
}
}