24 lines
494 B
CSS
24 lines
494 B
CSS
.highlight-timeline {
|
|
--current-color: var(--advised-text-color, red);
|
|
|
|
.swiper-pagination-bullet {
|
|
@apply !pb-10 font-normal text-base;
|
|
color: var(--current-color, white);
|
|
|
|
&:after {
|
|
top: unset !important;
|
|
bottom: 0 !important;
|
|
background-color: var(--current-color, white);
|
|
}
|
|
}
|
|
|
|
p {
|
|
@apply text-lg;
|
|
}
|
|
.swiper-button-next,
|
|
.swiper-button-prev {
|
|
--swiper-navigation-size: 32px;
|
|
@apply filter-white !p-10;
|
|
}
|
|
}
|