Improve banner on mobile devices

This commit is contained in:
Eli Ribble 2026-01-31 21:47:46 +00:00
parent f20067b323
commit a369758eda
No known key found for this signature in database
3 changed files with 16 additions and 9 deletions

View file

@ -1,3 +1,16 @@
.banner {
display: block;
}
@include media-breakpoint-up(xs) {
.banner {
width: 100%;
}
}
@include media-breakpoint-up(xl) {
.banner {
height: 100%;
}
}
.service-card {
transition: transform 0.3s;
height: 100%;
@ -24,9 +37,3 @@
background-color: #F76436;
overflow: hidden;
}
.banner-image {
display: block;
/* width as needed */
}