Skip to content

Commit

Permalink
Publishig to npm
Browse files Browse the repository at this point in the history
  • Loading branch information
leandrowd committed Jan 19, 2016
1 parent 4a90da2 commit 2d40b85
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 14 deletions.
2 changes: 1 addition & 1 deletion lib/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-responsive-carousel",
"version": "3.0.8",
"version": "3.0.9",
"description": "React Responsive Carousel",
"author": {
"name": "Leandro Augusto Lemos",
Expand Down
35 changes: 23 additions & 12 deletions lib/styles/carousel.css
Original file line number Diff line number Diff line change
Expand Up @@ -175,20 +175,31 @@ button {
margin: auto;
width: 100%; }
.carousel .slider-wrapper.axis-horizontal .slider {
display: flex;
display: -webkit-flex; }
.carousel .slider-wrapper.axis-horizontal .slide {
flex-direction: column;
flex-flow: column; }
.carousel .slider-wrapper.axis-vertical .slider {
display: inline-block; }
.carousel .slider-wrapper.axis-vertical .slide {
position: relative;
display: block;
margin: 0; }
-ms-box-orient: horizontal;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -moz-flex;
display: -webkit-flex;
display: flex; }
.carousel .slider-wrapper.axis-horizontal .slider .slide {
flex-direction: column;
flex-flow: column; }
.carousel .slider-wrapper.axis-vertical {
-ms-box-orient: horizontal;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -moz-flex;
display: -webkit-flex;
display: flex; }
.carousel .slider-wrapper.axis-vertical .slider {
-webkit-flex-direction: column;
flex-direction: column; }
.carousel .slider {
position: relative;
list-style: none; }
list-style: none;
width: 100%; }
.carousel .slider.animated {
-webkit-transition: all 0.35s ease-in-out;
-moz-transition: all 0.35s ease-in-out;
Expand Down
2 changes: 1 addition & 1 deletion lib/styles/carousel.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 2d40b85

Please sign in to comment.