Files
ionic-framework/scss/ionic/_slideBox.scss
2013-10-16 00:43:25 -05:00

26 lines
460 B
SCSS

.slide-box {
// Make sure items don't scroll over ever
overflow: hidden;
}
.slide-box-items {
position: relative;
white-space: nowrap;
-webkit-transition: -webkit-transform 0 ease-in-out;
// Remove the gaps between slide content items
font-size: 0;
}
.slide-box-animating {
-webkit-transition-duration: 0.2s;
}
.slide-box-content {
display: inline-block;
vertical-align: top;
width: 100%;
height: 100%;
img {
width: 100%;
}
}