@redseed/redseed-ui-vue3 5.1.2 → 5.1.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/package.json
CHANGED
|
@@ -119,12 +119,17 @@ const props = defineProps({
|
|
|
119
119
|
table {
|
|
120
120
|
@apply w-full border-collapse table-auto;
|
|
121
121
|
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
@apply
|
|
125
|
-
|
|
122
|
+
thead {
|
|
123
|
+
tr {
|
|
124
|
+
@apply last:border-b-rsui-grey-400;
|
|
125
|
+
|
|
126
|
+
th {
|
|
127
|
+
@apply bg-rsui-grey-100;
|
|
128
|
+
@apply font-semibold text-xs leading-5 text-rsui-grey-600 hover:text-rsui-grey-700;
|
|
129
|
+
}
|
|
126
130
|
}
|
|
127
131
|
}
|
|
132
|
+
|
|
128
133
|
}
|
|
129
134
|
|
|
130
135
|
&__container {
|
|
@@ -30,7 +30,7 @@ function handleClick() {
|
|
|
30
30
|
.rsui-tr {
|
|
31
31
|
@apply transition-all;
|
|
32
32
|
@apply border-b border-rsui-grey-400 rounded-lg;
|
|
33
|
-
@apply last:border-b-transparent
|
|
33
|
+
@apply last:border-b-transparent;
|
|
34
34
|
|
|
35
35
|
&--clickable {
|
|
36
36
|
@apply cursor-pointer hover:bg-rsui-grey-100;
|