@redseed/redseed-ui-tailwindcss 6.2.2 → 6.2.3
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 +5 -1
- package/components/modal.css +2 -2
- package/package.json +1 -1
package/components/card.css
CHANGED
|
@@ -1,7 +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 border border-
|
|
4
|
+
@apply rounded-xl bg-background-primary border border-transparent;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.rsui-card--bordered {
|
|
8
|
+
@apply border-border-primary;
|
|
5
9
|
}
|
|
6
10
|
|
|
7
11
|
.rsui-card--hoverable {
|
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 border rounded-
|
|
40
|
-
@apply bg-background-primary border-border-
|
|
39
|
+
@apply border rounded-xl shadow-full md:w-full md:mx-auto mx-4;
|
|
40
|
+
@apply bg-background-primary border-border-primary;
|
|
41
41
|
-ms-overflow-style: none;
|
|
42
42
|
scrollbar-width: none;
|
|
43
43
|
}
|