@redseed/redseed-ui-tailwindcss 6.2.3 → 6.2.4
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.
- package/components/card.css +7 -3
- package/components/modal.css +2 -2
- package/package.json +1 -1
package/components/card.css
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
.rsui-card {
|
|
2
2
|
@apply relative flex flex-col;
|
|
3
3
|
@apply transition duration-200;
|
|
4
|
-
@apply rounded-xl bg-background-primary
|
|
4
|
+
@apply rounded-xl bg-background-primary;
|
|
5
5
|
}
|
|
6
6
|
|
|
7
7
|
.rsui-card--bordered {
|
|
8
|
-
@apply border-border-primary;
|
|
8
|
+
@apply border border-border-primary;
|
|
9
9
|
}
|
|
10
10
|
|
|
11
11
|
.rsui-card--hoverable {
|
|
@@ -29,7 +29,11 @@
|
|
|
29
29
|
}
|
|
30
30
|
|
|
31
31
|
.rsui-card__image {
|
|
32
|
-
@apply rounded-t-xl overflow-hidden;
|
|
32
|
+
@apply rounded-t-xl overflow-hidden w-full relative;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.rsui-card__image__badge-container {
|
|
36
|
+
@apply absolute inset-x-0 w-full bottom-0 py-4 px-4 sm:px-6 flex gap-1;
|
|
33
37
|
}
|
|
34
38
|
|
|
35
39
|
.rsui-card__content {
|
package/components/modal.css
CHANGED
|
@@ -36,8 +36,8 @@
|
|
|
36
36
|
|
|
37
37
|
.rsui-modal__content {
|
|
38
38
|
@apply relative max-h-full inset-0 overflow-scroll overscroll-contain transform transition-all;
|
|
39
|
-
@apply
|
|
40
|
-
@apply bg-background-primary
|
|
39
|
+
@apply rounded-xl shadow-full md:w-full md:mx-auto mx-4;
|
|
40
|
+
@apply bg-background-primary;
|
|
41
41
|
-ms-overflow-style: none;
|
|
42
42
|
scrollbar-width: none;
|
|
43
43
|
}
|