Skip to content

Commit 7bff46a

Browse files
committed
fix(arc-saas): dESIGN CHANGES
DESIGN CHANGES y
1 parent a385b5f commit 7bff46a

File tree

2 files changed

+78
-1
lines changed

2 files changed

+78
-1
lines changed

projects/saas-ui/src/app/on-boarding/components/add-lead/add-lead.component.scss

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,82 @@
1717
}
1818
}
1919

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+
2096
.input-box {
2197
.inputTags {
2298
input {

projects/saas-ui/src/app/shared/services/on-boarding-service.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,9 @@ import {Lead, Tenant} from '../models';
2323
import {APP_CONFIG} from '@project-lib/app-config';
2424
import {IAnyObject} from '@project-lib/core/i-any-object';
2525
import {GetTotalLeadCommand} from '../../main/commands/get-total-lead.command';
26-
import {RegisterTenantCommand} from '../../main/commands';
26+
2727
import {TenantLead} from '../models/tenantLead.model';
28+
import {RegisterTenantCommand} from '../../main/commands/register-tenant.command';
2829

2930
interface BackendFilter<MT extends object = AnyObject> {
3031
where?: Where<MT>;

0 commit comments

Comments
 (0)