File tree Expand file tree Collapse file tree 2 files changed +78
-1
lines changed
on-boarding/components/add-lead Expand file tree Collapse file tree 2 files changed +78
-1
lines changed Original file line number Diff line number Diff line change 17
17
}
18
18
}
19
19
20
+
21
+ .required {
22
+ color : red ;
23
+ }
24
+
25
+
26
+ .input-container {
27
+ position : relative ;
28
+ }
29
+
30
+ .info-icon {
31
+ margin-left : 8px ;
32
+ cursor : pointer ;
33
+ color : #007bff ;
34
+ }
35
+
36
+
37
+ .input-box {
38
+ position : relative ;
39
+
40
+ .input-title {
41
+ margin-bottom : 10px ;
42
+ font-weight : bold ;
43
+ font-size : 14px ;
44
+ }
45
+
46
+ .input-container {
47
+ position : relative ;
48
+ display : flex ;
49
+ align-items : center ;
50
+ }
51
+
52
+ input [nbInput ] {
53
+ padding-right : 2.5rem ;
54
+ }
55
+
56
+ .info-icon {
57
+ position : absolute ;
58
+ right : 0.5rem ;
59
+ font-size : 1.2rem ;
60
+ color : #007bff ;
61
+ }
62
+
63
+
64
+ .inputTags {
65
+ position : relative ;
66
+
67
+ .input-container {
68
+ display : flex ;
69
+ align-items : center ;
70
+ position : relative ;
71
+
72
+ input {
73
+ width : 100% ;
74
+ padding : 10px ;
75
+ padding-right : 30px ;
76
+ border : 1px solid #dcdcdc ;
77
+ border-radius : 4px ;
78
+ box-sizing : border-box ;
79
+ }
80
+
81
+ .info-icon {
82
+ position : absolute ;
83
+ right : 10px ;
84
+ top : 50% ;
85
+ transform : translateY (-50% );
86
+ cursor : pointer ;
87
+ color : #007bff ;
88
+ font-size : 18px ;
89
+ z-index : 1 ;
90
+ }
91
+
92
+ }
93
+ }
94
+ }
95
+
20
96
.input-box {
21
97
.inputTags {
22
98
input {
Original file line number Diff line number Diff line change @@ -23,8 +23,9 @@ import {Lead, Tenant} from '../models';
23
23
import { APP_CONFIG } from '@project-lib/app-config' ;
24
24
import { IAnyObject } from '@project-lib/core/i-any-object' ;
25
25
import { GetTotalLeadCommand } from '../../main/commands/get-total-lead.command' ;
26
- import { RegisterTenantCommand } from '../../main/commands' ;
26
+
27
27
import { TenantLead } from '../models/tenantLead.model' ;
28
+ import { RegisterTenantCommand } from '../../main/commands/register-tenant.command' ;
28
29
29
30
interface BackendFilter < MT extends object = AnyObject > {
30
31
where ?: Where < MT > ;
You can’t perform that action at this time.
0 commit comments