dhre-component-lib 0.1.9 → 0.2.1
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.
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
@import '../../theme/colors/colors.scss';
|
|
2
|
-
|
|
3
1
|
.otpMainContainer {
|
|
4
2
|
display: flex;
|
|
5
3
|
justify-content: center;
|
|
@@ -24,25 +22,25 @@
|
|
|
24
22
|
}
|
|
25
23
|
|
|
26
24
|
.resendContainer {
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
25
|
+
display: flex;
|
|
26
|
+
flex-direction: row;
|
|
27
|
+
margin-top: 10px;
|
|
28
|
+
justify-content: space-between;
|
|
31
29
|
}
|
|
32
30
|
|
|
33
31
|
.errorText {
|
|
34
|
-
color:
|
|
32
|
+
color: #EB0542;
|
|
35
33
|
font-weight: 400;
|
|
36
34
|
font-size: 14px;
|
|
37
35
|
}
|
|
38
36
|
|
|
39
37
|
.timerText {
|
|
40
|
-
color:
|
|
38
|
+
color: #A7A7A7;
|
|
41
39
|
font-weight: 400;
|
|
42
40
|
font-size: 14px;
|
|
43
41
|
}
|
|
44
42
|
.resendText {
|
|
45
|
-
color:
|
|
43
|
+
color: #A7A7A7;
|
|
46
44
|
font-weight: 700;
|
|
47
45
|
font-size: 14px;
|
|
48
46
|
}
|
|
@@ -1,91 +1,9 @@
|
|
|
1
|
-
.otpMainContainer {
|
|
2
|
-
display: flex;
|
|
3
|
-
justify-content: center;
|
|
4
|
-
flex-direction: column;
|
|
5
|
-
margin: 10px;
|
|
6
|
-
width: 343px;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
.otpInputDiv {
|
|
10
|
-
flex-direction: row;
|
|
11
|
-
gap: 12px;
|
|
12
|
-
display: flex;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
.otpInput {
|
|
16
|
-
width: 76px;
|
|
17
|
-
height: 48px;
|
|
18
|
-
text-align: center;
|
|
19
|
-
font-size: 18px;
|
|
20
|
-
font-weight: 400;
|
|
21
|
-
border-radius: 8px;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
.resendContainer {
|
|
25
|
-
display: flex;
|
|
26
|
-
flex-direction: row;
|
|
27
|
-
margin-top: 10px;
|
|
28
|
-
justify-content: space-between;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
.errorText {
|
|
32
|
-
color: #EB0542;
|
|
33
|
-
font-weight: 400;
|
|
34
|
-
font-size: 14px;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
.timerText {
|
|
38
|
-
color: #A7A7A7;
|
|
39
|
-
font-weight: 400;
|
|
40
|
-
font-size: 14px;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
.resendText {
|
|
44
|
-
color: #A7A7A7;
|
|
45
|
-
font-weight: 700;
|
|
46
|
-
font-size: 14px;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
.breadcrumb {
|
|
50
|
-
display: flex;
|
|
51
|
-
align-items: center;
|
|
52
|
-
font-size: 16px;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
.breadcrumbItem {
|
|
56
|
-
color: blue;
|
|
57
|
-
cursor: pointer;
|
|
58
|
-
margin-right: 8px;
|
|
59
|
-
}
|
|
60
|
-
.breadcrumbItem:hover {
|
|
61
|
-
text-decoration: underline;
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
.separator {
|
|
65
|
-
margin: 0 8px;
|
|
66
|
-
color: grey;
|
|
67
|
-
}
|
|
68
|
-
|
|
69
1
|
.mapContainerStyle {
|
|
70
2
|
width: 100%;
|
|
71
3
|
height: 100%;
|
|
72
4
|
position: absolute;
|
|
73
5
|
}
|
|
74
6
|
|
|
75
|
-
.badge {
|
|
76
|
-
display: inline-block;
|
|
77
|
-
padding: 6px 12px;
|
|
78
|
-
background-color: red;
|
|
79
|
-
color: white;
|
|
80
|
-
border-radius: 12px;
|
|
81
|
-
font-size: 14px;
|
|
82
|
-
text-align: center;
|
|
83
|
-
cursor: pointer;
|
|
84
|
-
}
|
|
85
|
-
.badge:hover {
|
|
86
|
-
background-color: darkred;
|
|
87
|
-
}
|
|
88
|
-
|
|
89
7
|
.button {
|
|
90
8
|
padding: 8px 16px;
|
|
91
9
|
font-size: 14px;
|
|
@@ -140,6 +58,54 @@
|
|
|
140
58
|
color: yellow;
|
|
141
59
|
}
|
|
142
60
|
|
|
61
|
+
.otpMainContainer {
|
|
62
|
+
display: flex;
|
|
63
|
+
justify-content: center;
|
|
64
|
+
flex-direction: column;
|
|
65
|
+
margin: 10px;
|
|
66
|
+
width: 343px;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.otpInputDiv {
|
|
70
|
+
flex-direction: row;
|
|
71
|
+
gap: 12px;
|
|
72
|
+
display: flex;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.otpInput {
|
|
76
|
+
width: 76px;
|
|
77
|
+
height: 48px;
|
|
78
|
+
text-align: center;
|
|
79
|
+
font-size: 18px;
|
|
80
|
+
font-weight: 400;
|
|
81
|
+
border-radius: 8px;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.resendContainer {
|
|
85
|
+
display: flex;
|
|
86
|
+
flex-direction: row;
|
|
87
|
+
margin-top: 10px;
|
|
88
|
+
justify-content: space-between;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.errorText {
|
|
92
|
+
color: #EB0542;
|
|
93
|
+
font-weight: 400;
|
|
94
|
+
font-size: 14px;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.timerText {
|
|
98
|
+
color: #A7A7A7;
|
|
99
|
+
font-weight: 400;
|
|
100
|
+
font-size: 14px;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.resendText {
|
|
104
|
+
color: #A7A7A7;
|
|
105
|
+
font-weight: 700;
|
|
106
|
+
font-size: 14px;
|
|
107
|
+
}
|
|
108
|
+
|
|
143
109
|
.spinner {
|
|
144
110
|
border-style: solid;
|
|
145
111
|
border-radius: 50%;
|
|
@@ -180,6 +146,40 @@
|
|
|
180
146
|
transform: rotate(360deg);
|
|
181
147
|
}
|
|
182
148
|
}
|
|
149
|
+
.breadcrumb {
|
|
150
|
+
display: flex;
|
|
151
|
+
align-items: center;
|
|
152
|
+
font-size: 16px;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.breadcrumbItem {
|
|
156
|
+
color: blue;
|
|
157
|
+
cursor: pointer;
|
|
158
|
+
margin-right: 8px;
|
|
159
|
+
}
|
|
160
|
+
.breadcrumbItem:hover {
|
|
161
|
+
text-decoration: underline;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.separator {
|
|
165
|
+
margin: 0 8px;
|
|
166
|
+
color: grey;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.badge {
|
|
170
|
+
display: inline-block;
|
|
171
|
+
padding: 6px 12px;
|
|
172
|
+
background-color: red;
|
|
173
|
+
color: white;
|
|
174
|
+
border-radius: 12px;
|
|
175
|
+
font-size: 14px;
|
|
176
|
+
text-align: center;
|
|
177
|
+
cursor: pointer;
|
|
178
|
+
}
|
|
179
|
+
.badge:hover {
|
|
180
|
+
background-color: darkred;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
183
|
.container {
|
|
184
184
|
display: flex;
|
|
185
185
|
flex-direction: column;
|