Commit c35f693237abf889c1f989f99f93e7cb93893a84
1 parent
1e7325e078
Exists in
master
and in
1 other branch
Arreglo en carousel
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
src/sass/_swiper.scss
1 | .swiper { | 1 | .swiper { |
2 | &-container { | 2 | &-container { |
3 | height: 300px; | 3 | height: 100%; |
4 | } | 4 | } |
5 | &-slide { | 5 | &-slide { |
6 | background: transparent; | 6 | background: transparent; |
7 | height: 400px; | 7 | height: 400px; |
8 | text-align: unset; | 8 | text-align: unset; |
9 | -webkit-align-items: unset; | 9 | -webkit-align-items: unset; |
10 | align-items: unset; | 10 | align-items: unset; |
11 | } | 11 | } |
12 | 12 | ||
13 | @media(max-width: 992px){ | 13 | @media(max-width: 992px){ |
14 | &-container{ | 14 | &-container{ |
15 | height: 430px; | 15 | height: 100%; |
16 | } | 16 | } |
17 | &-pagination{ | 17 | &-pagination{ |
18 | background: #CCC; | 18 | background: #CCC; |
19 | padding: 0.5rem; | 19 | padding: 0.5rem; |
20 | } | 20 | } |
21 | } | 21 | } |
22 | } | 22 | } |
23 | 23 | ||
24 | .swiper-pagination-bullet-active { | 24 | .swiper-pagination-bullet-active { |
25 | opacity: 1; | 25 | opacity: 1; |
26 | background: #CD9035; | 26 | background: #CD9035; |
27 | } | 27 | } |
28 | 28 |