@redseed/redseed-ui-tailwindcss 6.0.0 → 6.0.1
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/meta_info.css +7 -3
- package/package.json +1 -1
package/components/meta_info.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
.rsui-meta-info {
|
|
2
|
-
@apply flex flex-col
|
|
2
|
+
@apply flex flex-col gap-y-1;
|
|
3
3
|
}
|
|
4
4
|
|
|
5
5
|
.rsui-meta-info__top {
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
}
|
|
12
12
|
|
|
13
13
|
.rsui-meta-info__label {
|
|
14
|
-
@apply font-semibold text-
|
|
14
|
+
@apply font-semibold text-xs text-text-primary;
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
.rsui-meta-info__help {
|
|
@@ -23,5 +23,9 @@
|
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
.rsui-meta-info__value {
|
|
26
|
-
@apply text-xs text-text-secondary
|
|
26
|
+
@apply text-xs text-text-secondary;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.rsui-meta-info--inline {
|
|
30
|
+
@apply flex-row flex-wrap items-center gap-x-2 gap-y-1;
|
|
27
31
|
}
|