testio-tailwind 0.5.0 → 0.5.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testio-tailwind",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "description": "Tailwind based design system for Test IO",
5
5
  "scripts": {
6
6
  "clean": "del dist",
@@ -60,6 +60,7 @@
60
60
  @import "components/select2";
61
61
  @import "components/select";
62
62
  @import "components/test_header";
63
+ @import "components/ratingscale";
63
64
 
64
65
  @import "components/customer/customer_header";
65
66
  @import "components/customer/customer_sidebar";
@@ -0,0 +1,24 @@
1
+
2
+ .rating-wrapper {
3
+ @apply flex flex-col min-w-0;
4
+ }
5
+
6
+ .rating-scale {
7
+ @apply grid grid-flow-col gap-xxs md:gap-xs;
8
+ }
9
+
10
+ .rating-scale .selectable-token {
11
+ @apply w-full;
12
+ }
13
+
14
+ .rating-scale .selectable-token label {
15
+ @apply justify-center w-full px-xxs;
16
+ }
17
+
18
+ .rating-labels {
19
+ @apply flex justify-between mt-xxs text-label text-label-color leading-tight;
20
+ }
21
+
22
+ .rating-labels .label-max {
23
+ @apply text-right;
24
+ }
@@ -195,29 +195,3 @@
195
195
  @apply block text-icon-xl h-icon-xl my-xs;
196
196
  }
197
197
  }
198
-
199
- /*/ Rating scale /*/
200
-
201
- .rating-wrapper {
202
- @apply flex flex-col min-w-0;
203
- }
204
-
205
- .rating-scale {
206
- @apply grid grid-flow-col gap-xs;
207
- }
208
-
209
- .rating-scale .selectable-token {
210
- @apply w-full;
211
- }
212
-
213
- .rating-scale .selectable-token label {
214
- @apply justify-center w-full;
215
- }
216
-
217
- .rating-labels {
218
- @apply flex justify-between mt-xxs text-label text-label-color leading-tight;
219
- }
220
-
221
- .rating-labels .label-max {
222
- @apply text-right;
223
- }