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.
35 lines
504 B
35 lines
504 B
:host {
|
|
display: block;
|
|
position: relative;
|
|
|
|
::ng-deep {
|
|
[gf-carousel-item] {
|
|
flex-shrink: 0;
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
button {
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
z-index: 1;
|
|
|
|
&.carousel-nav-prev {
|
|
left: -0.5rem;
|
|
}
|
|
|
|
&.carousel-nav-next {
|
|
right: -0.5rem;
|
|
}
|
|
}
|
|
|
|
.carousel-content {
|
|
flex-direction: row;
|
|
outline: none;
|
|
transition: transform 0.5s ease-in-out;
|
|
|
|
.animations-disabled & {
|
|
transition: none;
|
|
}
|
|
}
|
|
}
|
|
|