diff --git a/dist/app.css b/dist/app.css index 4c5639a..b480569 100644 --- a/dist/app.css +++ b/dist/app.css @@ -12636,6 +12636,11 @@ footer.sub-footer { padding: 0 2rem; position: relative; } +@media (max-width: 767.98px) { + .testimonials-section .testimonials { + padding: 0 1rem; + } +} .testimonials-section .testimonials .slick-arrow { width: 60px; height: 55px; @@ -12727,6 +12732,11 @@ footer.sub-footer { .testimonials-section .testimonials .testimonial .person-details p.name { font-weight: bold; } +@media (max-width: 767.98px) { + .testimonials-section .testimonials .testimonial .person-details p { + font-size: 1rem; + } +} section.block-links { padding: 4rem 0; diff --git a/dist/mix-manifest.json b/dist/mix-manifest.json index f226ac2..49bbfcb 100644 --- a/dist/mix-manifest.json +++ b/dist/mix-manifest.json @@ -1,4 +1,4 @@ { "/app.js": "/app.js?id=8af0c9c0d989b79afe124f8138dc1a63", - "/app.css": "/app.css?id=6af9463b25ba6c06c830d82bfef5a914" + "/app.css": "/app.css?id=4e2e287b00a843330a0d0dd57f1ea832" } diff --git a/src/scss/flex-testimonials.scss b/src/scss/flex-testimonials.scss index 94b92cd..cb284a8 100644 --- a/src/scss/flex-testimonials.scss +++ b/src/scss/flex-testimonials.scss @@ -7,10 +7,15 @@ text-align: center; margin-bottom: 2rem; } + .testimonials { padding: 0 2rem; position: relative; + @include media-breakpoint-down(md) { + padding: 0 1rem; + } + .slick-arrow { width: 60px; height: 55px; @@ -126,6 +131,10 @@ &.name { font-weight: bold; } + + @include media-breakpoint-down(md) { + font-size: 1rem; + } } } }