@redseed/redseed-ui-tailwindcss 7.10.0 → 7.10.2
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 +2 -2
- package/components/table.css +8 -0
- package/package.json +1 -1
package/components/section.css
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
.rsui-section {
|
|
2
|
-
@apply flex flex-col rounded-xl;
|
|
2
|
+
@apply flex flex-col rounded-xl border border-solid border-transparent;
|
|
3
3
|
}
|
|
4
4
|
|
|
5
5
|
.rsui-section--bordered {
|
|
6
|
-
@apply border
|
|
6
|
+
@apply border-border-primary;
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
.rsui-section--padded {
|
package/components/table.css
CHANGED
|
@@ -18,6 +18,14 @@
|
|
|
18
18
|
@apply border-b-border-primary;
|
|
19
19
|
}
|
|
20
20
|
|
|
21
|
+
.rsui-table--no-header table thead tr:first-child th:first-child {
|
|
22
|
+
@apply rounded-tl-xl;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.rsui-table--no-header table thead tr:first-child th:last-child {
|
|
26
|
+
@apply rounded-tr-xl;
|
|
27
|
+
}
|
|
28
|
+
|
|
21
29
|
.rsui-table table thead th {
|
|
22
30
|
@apply bg-background-disabled font-semibold text-xs leading-6 text-text-secondary hover:text-text-primary;
|
|
23
31
|
}
|