@indice/ng-components 0.2.173-beta.67 → 0.2.173-beta.68
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/_styles.scss +8 -8
- package/package.json +1 -1
package/_styles.scss
CHANGED
|
@@ -18,27 +18,27 @@
|
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
select {
|
|
21
|
-
@apply max-w-lg block focus:
|
|
21
|
+
@apply max-w-lg block focus:outline-0 w-full sm:max-w-xs sm:text-sm border-gray-200 rounded-sm;
|
|
22
22
|
}
|
|
23
23
|
|
|
24
24
|
input[type=text] {
|
|
25
|
-
@apply focus:outline-
|
|
25
|
+
@apply focus:outline-0 flex-1 block w-full rounded-none text-sm border-gray-200;
|
|
26
26
|
}
|
|
27
27
|
|
|
28
28
|
input[type=password] {
|
|
29
|
-
@apply focus:outline-
|
|
29
|
+
@apply focus:outline-0 flex-1 block w-full rounded-none text-sm border-gray-200;
|
|
30
30
|
}
|
|
31
31
|
|
|
32
32
|
input[type=email] {
|
|
33
|
-
@apply focus:outline-
|
|
33
|
+
@apply focus:outline-0 flex-1 block w-full rounded-none text-sm border-gray-200;
|
|
34
34
|
}
|
|
35
35
|
|
|
36
36
|
input[type=number] {
|
|
37
|
-
@apply focus:outline-
|
|
37
|
+
@apply focus:outline-0 flex-1 block w-full rounded-none text-sm border-gray-200;
|
|
38
38
|
}
|
|
39
39
|
|
|
40
40
|
textarea {
|
|
41
|
-
@apply
|
|
41
|
+
@apply focus:outline-0 flex-1 block w-full text-sm border-gray-200 rounded-sm;
|
|
42
42
|
}
|
|
43
43
|
}
|
|
44
44
|
|
|
@@ -657,10 +657,10 @@
|
|
|
657
657
|
|
|
658
658
|
|
|
659
659
|
.datepicker-input {
|
|
660
|
-
@apply w-full focus:
|
|
660
|
+
@apply w-full focus:outline-0 rounded-none sm:text-sm border-gray-300;
|
|
661
661
|
}
|
|
662
662
|
.datepicker-button {
|
|
663
|
-
@apply relative inline-flex items-center px-2 py-2 border-t border-b border-r border-gray-300 text-sm rounded-r-sm text-gray-700 bg-gray-50 hover:bg-gray-100 focus:outline-
|
|
663
|
+
@apply relative inline-flex items-center px-2 py-2 border-t border-b border-r border-gray-300 text-sm rounded-r-sm text-gray-700 bg-gray-50 hover:bg-gray-100 focus:outline-0;
|
|
664
664
|
}
|
|
665
665
|
|
|
666
666
|
.datepicker-background {
|