Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

SUP-2175, Sub-track carousel arrows are incorrect. #412

Merged
merged 1 commit into from
Oct 20, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions assets/css/directives/responsive-carousel.scss
Original file line number Diff line number Diff line change
Expand Up @@ -53,16 +53,46 @@
background-color: $gray-lightest;
color: $accent-gray;
text-align: center;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}

.rn-carousel-control-prev {
left: 0;
}

.rn-carousel-control-prev:before {
content: '';
display: block;
width: 20px;
height: 38px;
background-image: url('/images/ico-arrow-big-left.svg');
background-size: 20px 38px;

:hover {
opacity: 0;
}
}

.rn-carousel-control-next {
right: 0;
}

.rn-carousel-control.rn-carousel-control-next:before {
content: '';
display: block;
width: 20px;
height: 38px;
background-image: url('/images/ico-arrow-big-right.svg');
background-size: 20px 38px;

:hover {
opacity: 0.3;
}
}

}

.slide {
Expand Down