Files
bflows-bandi-fe/src/assets/scss/theme-base/components/data/_carousel.scss
Vitalii Kiiko c09127a675 - added main layout, sidebar, toolbar;
- started dashboard page, added first widget;
- created new theme 'gepafin' - styles for the app;
2024-08-12 16:55:30 +02:00

38 lines
991 B
SCSS

.p-carousel {
.p-carousel-content {
.p-carousel-prev,
.p-carousel-next {
margin: $inlineSpacing;
@include action-icon();
}
}
.p-carousel-indicators {
padding: $carouselIndicatorsPadding;
.p-carousel-indicator {
margin-right: $inlineSpacing;
margin-bottom: $inlineSpacing;
button {
background-color: $carouselIndicatorBg;
width: $carouselIndicatorWidth;
height: $carouselIndicatorHeight;
transition: $actionIconTransition;
border-radius: $carouselIndicatorBorderRadius;
&:hover {
background: $carouselIndicatorHoverBg;
}
}
&.p-highlight {
button {
background: $highlightBg;
color: $highlightTextColor;
}
}
}
}
}