@redseed/redseed-ui-tailwindcss 7.5.0 → 7.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
.rsui-section-slider {
|
|
2
|
+
@apply min-w-full max-w-full overflow-x-hidden rounded-3xl pr-0;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.rsui-section-slider > .rsui-section__header {
|
|
6
|
+
@apply pr-space-lg;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.rsui-section-slider--featured {
|
|
10
|
+
@apply bg-brand-600;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.rsui-section-slider--featured .rsui-section-header__title {
|
|
14
|
+
@apply text-white;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.rsui-section-slider--featured .rsui-section-header__subtitle {
|
|
18
|
+
@apply text-white/80;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.rsui-section-slider--ai {
|
|
22
|
+
@apply bg-linear-to-tr from-background-ai-from to-background-ai-to border border-brand-500;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.rsui-section-slider__action {
|
|
26
|
+
@apply shrink-0 inline-flex items-center justify-center size-14 rounded-full no-underline transition-all disabled:opacity-50 disabled:text-grey-400 hover:cursor-pointer disabled:hover:cursor-default border border-grey-400 bg-transparent;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.rsui-section-slider__container {
|
|
30
|
+
@apply relative flex gap-x-3 lg:gap-x-6 overflow-x-auto lg:overflow-x-hidden focus:outline-hidden scroll-smooth snap-x snap-mandatory;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.rsui-section-slider__container::-webkit-scrollbar {
|
|
34
|
+
@apply hidden;
|
|
35
|
+
}
|
package/components.css
CHANGED
|
@@ -82,6 +82,8 @@ Please be careful when adding new components and updating the order.
|
|
|
82
82
|
@import './components/section.css';
|
|
83
83
|
@import './components/section_header.css';
|
|
84
84
|
@import './components/section_footer.css';
|
|
85
|
+
@import './components/section_slider.css';
|
|
86
|
+
@import './components/section_slider_item.css';
|
|
85
87
|
@import './components/skeleton.css';
|
|
86
88
|
@import './components/single_column_layout.css';
|
|
87
89
|
@import './components/sorting.css';
|