Move carousel arrows out of the way on mobile
Carrousels have a first slide that is mostly text without any background color, and on mobile the arrows looked like where “erasing” the text.
This commit is contained in:
parent
0b93a4c989
commit
5e053034a5
|
@ -635,6 +635,21 @@ dl, .nature > div, .outside_activities > div, .campsite_info {
|
|||
z-index: 1;
|
||||
}
|
||||
|
||||
|
||||
@media (max-width: 48rem) {
|
||||
|
||||
.carousel .slick-arrow {
|
||||
background: var(--accent);
|
||||
margin-top: -6rem;
|
||||
margin-right: -1rem;
|
||||
}
|
||||
|
||||
.carousel .slick-list {
|
||||
margin-right: -5rem;
|
||||
padding-top: 2rem;
|
||||
}
|
||||
}
|
||||
|
||||
.slick-slider .slick-prev {
|
||||
right: 6rem;
|
||||
border-top-right-radius: 0;
|
||||
|
|
Loading…
Reference in New Issue