mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
588 B
37 lines
588 B
app-carousel {
|
|
display: block;
|
|
position: relative;
|
|
}
|
|
|
|
.docs-carousel-content {
|
|
display: flex;
|
|
flex-direction: row;
|
|
outline: none;
|
|
transition: transform 0.5s ease-in-out;
|
|
|
|
.animations-disabled & {
|
|
transition: none;
|
|
}
|
|
}
|
|
|
|
.docs-carousel-content-wrapper {
|
|
overflow: hidden;
|
|
}
|
|
|
|
[carousel-item] {
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
button.docs-carousel-nav {
|
|
position: absolute;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
}
|
|
|
|
.docs-carousel-nav-prev {
|
|
left: -50px;
|
|
}
|
|
|
|
.docs-carousel-nav-next {
|
|
right: -50px;
|
|
}
|