File tree Expand file tree Collapse file tree 6 files changed +215
-29
lines changed
projects/saas-ui/src/app/on-boarding Expand file tree Collapse file tree 6 files changed +215
-29
lines changed Original file line number Diff line number Diff line change 61
61
},
62
62
{
63
63
"type" : " anyComponentStyle" ,
64
- "maximumWarning" : " 2kb " ,
65
- "maximumError" : " 4kb "
64
+ "maximumWarning" : " 1mb " ,
65
+ "maximumError" : " 2mb "
66
66
}
67
67
],
68
68
"outputHashing" : " all"
212
212
"budgets" : [
213
213
{
214
214
"type" : " initial" ,
215
- "maximumWarning" : " 500kb " ,
216
- "maximumError" : " 1mb "
215
+ "maximumWarning" : " 5mb " ,
216
+ "maximumError" : " 4mb "
217
217
},
218
218
{
219
219
"type" : " anyComponentStyle" ,
220
- "maximumWarning" : " 2kb " ,
221
- "maximumError" : " 4kb "
220
+ "maximumWarning" : " 1mb " ,
221
+ "maximumError" : " 2mb "
222
222
}
223
223
],
224
224
"outputHashing" : " all"
311
311
"budgets" : [
312
312
{
313
313
"type" : " initial" ,
314
- "maximumWarning" : " 500kb " ,
315
- "maximumError" : " 1mb "
314
+ "maximumWarning" : " 5mb " ,
315
+ "maximumError" : " 5mb "
316
316
},
317
317
{
318
318
"type" : " anyComponentStyle" ,
319
- "maximumWarning" : " 2kb " ,
320
- "maximumError" : " 4kb "
319
+ "maximumWarning" : " 5mb " ,
320
+ "maximumError" : " 5mb "
321
321
}
322
322
],
323
323
"outputHashing" : " all"
Original file line number Diff line number Diff line change
1
+ @use ' ../../styles/forms.style.scss' as * ;
1
2
:host {
2
3
.logo {
3
4
padding-top : 10% ;
16
17
}
17
18
}
18
19
19
- .input-wrapper {
20
- display : flex ;
21
- gap : 10px ;
22
- justify-content : space-between ;
23
- flex-wrap : wrap ;
24
- }
25
20
26
- .input-box {
27
- width : 48% ;
28
-
29
- .input {
30
- input {
31
- margin : 5px 0 ;
32
- width : 100% !important ;
33
- max-width : 100% ;
34
- border-radius : 0 ;
35
- background : #fff ;
36
- }
37
- }
38
21
22
+ .input-box {
39
23
.inputTags {
40
24
input {
41
25
margin : 5px 0 ;
74
58
margin-top : 0 !important ;
75
59
}
76
60
}
61
+
Original file line number Diff line number Diff line change 2
2
@use ' ../../../../../../arc-lib/src/lib/theme/styles/variables' as * ;
3
3
@use ' ../../../../styles.scss' as * ;
4
4
@use ' ../../../../themes.scss' as * ;
5
+ @use ' ../../styles/forms.style.scss' as * ;
5
6
6
7
.input-wrapper {
7
8
display : flex ;
55
56
}
56
57
}
57
58
}
59
+
60
+ /* Media Queries for Responsiveness */
61
+
62
+ @media (max-width : 575px ) {
63
+
64
+ .plan-card-container .plan-card-wrapper {
65
+ flex-direction : column ;
66
+ }
67
+
68
+ .plan-card-container .plan-card-wrapper .plan-card-box {
69
+ width : 100% ;
70
+ }
71
+ }
72
+
73
+ /* Small devices */
74
+ @media (min-width : 576px ) and (max-width : 767px ) {
75
+
76
+ .plan-card-container .plan-card-wrapper {
77
+ flex-direction : column ;
78
+ }
79
+
80
+ .plan-card-container .plan-card-wrapper .plan-card-box {
81
+ width : 100% ;
82
+ }
83
+ }
84
+
85
+ /* Medium devices */
86
+ @media (min-width : 768px ) and (max-width : 991px ) {
87
+
88
+ .plan-card-container .plan-card-wrapper {
89
+ flex-direction : row ;
90
+ }
91
+
92
+ .plan-card-container .plan-card-wrapper .plan-card-box {
93
+ width : calc (50% - 20px );
94
+ }
95
+ }
96
+
97
+ /* Large devices */
98
+ @media (min-width : 992px ) {
99
+
100
+ .plan-card-container .plan-card-wrapper {
101
+ flex-direction : row ;
102
+ }
103
+
104
+ .plan-card-container .plan-card-wrapper .plan-card-box {
105
+ width : calc (33.33% - 20px );
106
+ }
107
+ }
Original file line number Diff line number Diff line change 1
1
/* email-verification-success.component.css */
2
+ @use ' ../../styles/forms.style.scss' as * ;
2
3
:host {
3
4
display : flex ;
4
5
justify-content : center ;
7
8
}
8
9
9
10
nb-card {
10
- width : 500px ;
11
11
text-align : center ;
12
12
}
13
13
18
18
p {
19
19
margin-bottom : 20px ;
20
20
}
21
+
22
+ .verifiaction-wrapper {
23
+ padding : 0 18px ;
24
+ }
Original file line number Diff line number Diff line change 1
1
/* registration-complete.component.css */
2
+ @use ' ../../styles/forms.style.scss' as * ;
2
3
:host {
3
4
display : flex ;
4
5
justify-content : center ;
Original file line number Diff line number Diff line change
1
+
2
+ .card-row {
3
+ margin : 0 ;
4
+ padding : 0 !important ;
5
+ }
6
+
7
+ .input-wrapper {
8
+ display : flex ;
9
+ gap : 10px ;
10
+ justify-content : space-between ;
11
+ flex-wrap : wrap ;
12
+ }
13
+
14
+ .input-box {
15
+ width : 48% ;
16
+
17
+ .input {
18
+ input {
19
+ margin : 5px 0 ;
20
+ width : 100% !important ;
21
+ max-width : 100% ;
22
+ border-radius : 0 ;
23
+ background : #fff ;
24
+ }
25
+ }
26
+ }
27
+
28
+ /* Media Queries for Responsiveness for Lead and tenant */
29
+
30
+ @media (max-width : 575px ) {
31
+ .input-wrapper {
32
+ flex-direction : column ;
33
+ }
34
+
35
+ .input-box {
36
+ width : 100% ;
37
+ }
38
+
39
+ .add-lead-wrapper .btn {
40
+ text-align : center ;
41
+ }
42
+
43
+ :host {
44
+ padding : 15px ;
45
+ }
46
+
47
+ h2 {
48
+ font-size : 1.25rem ;
49
+ }
50
+
51
+ p {
52
+ font-size : 0.9rem ;
53
+ }
54
+ }
55
+
56
+ /* Small devices*/
57
+ @media (min-width : 576px ) and (max-width : 767px ) {
58
+ .input-wrapper {
59
+ gap : 8px ;
60
+ }
61
+
62
+ .input-box {
63
+ width : 100% ;
64
+ }
65
+
66
+ .add-lead-wrapper .btn {
67
+ text-align : center ;
68
+ }
69
+
70
+ :host {
71
+ padding : 15px ;
72
+ }
73
+
74
+ h2 {
75
+ font-size : 1.4rem ;
76
+ }
77
+
78
+ p {
79
+ font-size : 0.95rem ;
80
+ }
81
+ }
82
+
83
+ /* Medium devices */
84
+ @media (min-width : 768px ) and (max-width : 991px ) {
85
+ .input-wrapper {
86
+ gap : 10px ;
87
+ }
88
+
89
+ .input-box {
90
+ width : 48% ;
91
+ }
92
+
93
+ .address-input-box {
94
+ width : 100% ;
95
+ }
96
+
97
+ .add-lead-wrapper .btn {
98
+ text-align : right ;
99
+ }
100
+ :host {
101
+ padding : 20px ;
102
+ }
103
+
104
+ h2 {
105
+ font-size : 1.5rem ;
106
+ }
107
+
108
+ p {
109
+ font-size : 1rem ;
110
+ }
111
+ }
112
+
113
+
114
+ /* Large devices */
115
+ @media (min-width : 992px ) {
116
+ .input-wrapper {
117
+ gap : 15px ;
118
+ }
119
+
120
+ .input-box {
121
+ width : 48% ;
122
+ }
123
+
124
+ .address-input-box {
125
+ width : 100% ;
126
+ }
127
+
128
+ .add-lead-wrapper .btn {
129
+ text-align : right ;
130
+ }
131
+ :host {
132
+ padding : 25px ;
133
+ }
134
+
135
+ h2 {
136
+ font-size : 1.6rem ;
137
+ }
138
+
139
+ p {
140
+ font-size : 1.05rem ;
141
+ }
142
+ }
143
+
144
+
145
+
146
+
You can’t perform that action at this time.
0 commit comments