@tsed/tailwind-formio 3.0.0-alpha.4 → 3.0.0-alpha.6
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 +1 -1
- package/styles/form-edit.css +13 -21
package/package.json
CHANGED
package/styles/form-edit.css
CHANGED
|
@@ -1,17 +1,16 @@
|
|
|
1
|
+
.form-edit-container {
|
|
2
|
+
@apply flex flex-col space-y-5;
|
|
3
|
+
}
|
|
4
|
+
|
|
1
5
|
.form-edit {
|
|
2
|
-
@apply
|
|
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
|
|
6
|
-
|
|
10
|
+
@apply flex-1 grid grid-cols-3 gap-5;
|
|
7
11
|
> div {
|
|
8
12
|
> .form-group {
|
|
9
|
-
@apply pb-0
|
|
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-
|
|
23
|
+
@apply flex flex-col justify-center;
|
|
24
|
+
|
|
25
25
|
.btn-save {
|
|
26
|
-
@apply
|
|
26
|
+
@apply leading-normal;
|
|
27
27
|
}
|
|
28
28
|
|
|
29
29
|
> div {
|
|
30
|
-
@apply flex flex-col
|
|
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 -
|
|
38
|
-
|
|
39
|
-
> * {
|
|
40
|
-
@apply mx-2;
|
|
41
|
-
}
|
|
33
|
+
@apply flex flex-row space-x-3;
|
|
42
34
|
}
|
|
43
35
|
}
|
|
44
36
|
}
|