@tsed/tailwind-formio 3.0.0-alpha.4 → 3.0.0-alpha.5

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": "@tsed/tailwind-formio",
3
- "version": "3.0.0-alpha.4",
3
+ "version": "3.0.0-alpha.5",
4
4
  "description": "Tailwind templates for form.io forms.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -1,17 +1,16 @@
1
+ .form-edit-container {
2
+ @apply flex flex-col space-y-5;
3
+ }
4
+
1
5
  .form-edit {
2
- @apply border-b-1 border-solid border-gray-200 sm:flex mb-5;
6
+ @apply flex space-y-5 space-x-5 pb-5;
7
+ @apply border-b-1 border-solid border-gray-200;
3
8
 
4
9
  &__settings {
5
- @apply flex-1 flex flex-wrap -mx-2;
6
-
10
+ @apply flex-1 grid grid-cols-3 gap-5;
7
11
  > div {
8
12
  > .form-group {
9
- @apply pb-0 px-2 w-full sm:w-auto;
10
- min-width: 25%;
11
-
12
- &:last-child {
13
- @apply mb-5;
14
- }
13
+ @apply pb-0 w-full sm:w-auto;
15
14
 
16
15
  .form-text {
17
16
  @apply p-0 h-0 -mb-1;
@@ -21,24 +20,17 @@
21
20
  }
22
21
 
23
22
  &__actions {
24
- @apply flex flex-col justify-end mb-2;
23
+ @apply flex flex-col justify-center;
24
+
25
25
  .btn-save {
26
- @apply mb-4 leading-normal;
26
+ @apply leading-normal;
27
27
  }
28
28
 
29
29
  > div {
30
- @apply flex flex-col pl-5;
31
-
32
- > * {
33
- @apply mb-3;
34
- }
30
+ @apply flex flex-col space-y-5;
35
31
 
36
32
  > div {
37
- @apply flex flex-row -mx-2;
38
-
39
- > * {
40
- @apply mx-2;
41
- }
33
+ @apply flex flex-row space-x-3;
42
34
  }
43
35
  }
44
36
  }