@redseed/redseed-ui-tailwindcss 5.4.3 → 5.4.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/section.css +5 -2
- package/package.json +1 -1
package/components/section.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
.rsui-section {
|
|
2
|
-
@apply border border-solid rounded-xl p-6;
|
|
2
|
+
@apply border border-solid rounded-xl p-6 space-y-4;
|
|
3
3
|
}
|
|
4
4
|
|
|
5
5
|
.rsui-section--primary {
|
|
@@ -18,6 +18,10 @@
|
|
|
18
18
|
@apply bg-background-success border-border-success text-text-primary;
|
|
19
19
|
}
|
|
20
20
|
|
|
21
|
+
.rsui-section--info {
|
|
22
|
+
@apply bg-background-info border-border-info text-text-primary;
|
|
23
|
+
}
|
|
24
|
+
|
|
21
25
|
.rsui-section--warning {
|
|
22
26
|
@apply bg-background-warning border-border-warning text-text-primary;
|
|
23
27
|
}
|
|
@@ -25,4 +29,3 @@
|
|
|
25
29
|
.rsui-section--error {
|
|
26
30
|
@apply bg-background-error border-border-error text-text-primary;
|
|
27
31
|
}
|
|
28
|
-
|