@tattvafoundation/upyog-css 1.0.13 → 1.0.15
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/dist/index.css +93 -121
- package/dist/index.min.css +1 -1
- package/img/Free-Silai-Machine-Yojna-1-jpg.jpeg +0 -0
- package/img/aadhaarCard.jpg +0 -0
- package/package.json +4 -2
- package/src/components/bmc.scss +7 -102
- package/src/components/multicolumn.scss +118 -0
- package/src/index.scss +46 -5
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tattvafoundation/upyog-css",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.15",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "dist/index.css",
|
|
6
6
|
"engines": {
|
|
@@ -52,6 +52,8 @@
|
|
|
52
52
|
"svg/**/*.svg",
|
|
53
53
|
"img/**/*.png",
|
|
54
54
|
"src/**/*.scss",
|
|
55
|
-
"src/**/*.css"
|
|
55
|
+
"src/**/*.css",
|
|
56
|
+
"img/**/*.jpg",
|
|
57
|
+
"img/**/*.jpeg"
|
|
56
58
|
]
|
|
57
59
|
}
|
package/src/components/bmc.scss
CHANGED
|
@@ -98,6 +98,12 @@
|
|
|
98
98
|
transform: translateX(-50%);
|
|
99
99
|
}
|
|
100
100
|
|
|
101
|
+
.bmc-card-bannerImage {
|
|
102
|
+
background-image: url("../img/Free-Silai-Machine-Yojna-1-jpg.jpeg");
|
|
103
|
+
height: 40vh;
|
|
104
|
+
background-size: cover;
|
|
105
|
+
}
|
|
106
|
+
|
|
101
107
|
/* Media Queries */
|
|
102
108
|
@media screen and (max-width: 768px) {
|
|
103
109
|
.line {
|
|
@@ -1029,108 +1035,7 @@
|
|
|
1029
1035
|
padding: 0;
|
|
1030
1036
|
}
|
|
1031
1037
|
|
|
1032
|
-
|
|
1033
|
-
position: relative;
|
|
1034
|
-
font-size: 16px;
|
|
1035
|
-
line-height: 20px;
|
|
1036
|
-
--text-opacity:1;
|
|
1037
|
-
color: #0b0c0c;
|
|
1038
|
-
color: rgba(11, 12, 12, var(--text-opacity));
|
|
1039
|
-
width: 100%; }
|
|
1040
|
-
.multi-column-dropdown-wrap .master, .multi-column-dropdown-wrap .master-active {
|
|
1041
|
-
position: relative;
|
|
1042
|
-
--border-opacity:1;
|
|
1043
|
-
border: 1px solid #464646;
|
|
1044
|
-
border-color: rgba(70, 70, 70, var(--border-opacity));
|
|
1045
|
-
height: 2rem;
|
|
1046
|
-
width: 100%; }
|
|
1047
|
-
.multi-column-dropdown-wrap .master input[type=text], .multi-column-dropdown-wrap .master .checkbox-wrap .input-emp[type=text], .checkbox-wrap .multi-column-dropdown-wrap .master .input-emp[type=text], .multi-column-dropdown-wrap .master-active input[type=text], .multi-column-dropdown-wrap .master-active .checkbox-wrap .input-emp[type=text], .checkbox-wrap .multi-column-dropdown-wrap .master-active .input-emp[type=text] {
|
|
1048
|
-
position: absolute;
|
|
1049
|
-
top: 0;
|
|
1050
|
-
left: 0;
|
|
1051
|
-
padding-left: 8px;
|
|
1052
|
-
min-height: 100%;
|
|
1053
|
-
min-width: 100%;
|
|
1054
|
-
opacity: 0; }
|
|
1055
|
-
.multi-column-dropdown-wrap .master input[type=text]:focus, .multi-column-dropdown-wrap .master .checkbox-wrap .input-emp[type=text]:focus, .checkbox-wrap .multi-column-dropdown-wrap .master .input-emp[type=text]:focus, .multi-column-dropdown-wrap .master-active input[type=text]:focus, .multi-column-dropdown-wrap .master-active .checkbox-wrap .input-emp[type=text]:focus, .checkbox-wrap .multi-column-dropdown-wrap .master-active .input-emp[type=text]:focus {
|
|
1056
|
-
outline: 2px solid transparent;
|
|
1057
|
-
outline-offset: 2px; }
|
|
1058
|
-
.multi-column-dropdown-wrap .master .label, .multi-column-dropdown-wrap .master-active .label {
|
|
1059
|
-
display: -webkit-box;
|
|
1060
|
-
display: -ms-flexbox;
|
|
1061
|
-
display: flex;
|
|
1062
|
-
-webkit-box-pack: justify;
|
|
1063
|
-
-ms-flex-pack: justify;
|
|
1064
|
-
justify-content: space-between;
|
|
1065
|
-
padding-left: 8px;
|
|
1066
|
-
width: 100%;
|
|
1067
|
-
height: 100%; }
|
|
1068
|
-
.multi-column-dropdown-wrap .master .label svg, .multi-column-dropdown-wrap .master-active .label svg {
|
|
1069
|
-
height: 2rem;
|
|
1070
|
-
width: 2rem; }
|
|
1071
|
-
.multi-column-dropdown-wrap .master:hover, .multi-column-dropdown-wrap .master-active:hover {
|
|
1072
|
-
--border-opacity:1;
|
|
1073
|
-
border: 1px solid #a82227;
|
|
1074
|
-
border-color: rgba(168, 34, 39, var(--border-opacity)); }
|
|
1075
|
-
.multi-column-dropdown-wrap .master-active {
|
|
1076
|
-
border-width: 1px;
|
|
1077
|
-
--border-opacity:1;
|
|
1078
|
-
border-color: #a82227;
|
|
1079
|
-
border-color: rgba(168, 34, 39, var(--border-opacity)); }
|
|
1080
|
-
.multi-column-dropdown-wrap .master-active input[type=text], .multi-column-dropdown-wrap .master-active .checkbox-wrap .input-emp[type=text], .checkbox-wrap .multi-column-dropdown-wrap .master-active .input-emp[type=text] {
|
|
1081
|
-
opacity: 1; }
|
|
1082
|
-
.multi-column-dropdown-wrap .master-active .label {
|
|
1083
|
-
display: none; }
|
|
1084
|
-
.multi-column-dropdown-wrap .server {
|
|
1085
|
-
-webkit-box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
|
|
1086
|
-
box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
|
|
1087
|
-
top: 35px;
|
|
1088
|
-
max-height: 20vmax;
|
|
1089
|
-
overflow: scroll;
|
|
1090
|
-
position: absolute;
|
|
1091
|
-
min-width: 100%;
|
|
1092
|
-
z-index: 20; }
|
|
1093
|
-
.multi-column-dropdown-wrap .server div {
|
|
1094
|
-
display: -webkit-box;
|
|
1095
|
-
display: -ms-flexbox;
|
|
1096
|
-
display: flex;
|
|
1097
|
-
width: 100%;
|
|
1098
|
-
background-color: #fff;
|
|
1099
|
-
background-color: rgba(255, 255, 255, var(--bg-opacity)); }
|
|
1100
|
-
.multi-column-dropdown-wrap .server div:hover {
|
|
1101
|
-
background-color: #eee;
|
|
1102
|
-
background-color: rgba(238, 238, 238, var(--bg-opacity)); }
|
|
1103
|
-
.multi-column-dropdown-wrap .server div input, .multi-column-dropdown-wrap .server div .checkbox-wrap .input-emp, .checkbox-wrap .multi-column-dropdown-wrap .server div .input-emp {
|
|
1104
|
-
height: 44px;
|
|
1105
|
-
position: absolute;
|
|
1106
|
-
min-width: 100%;
|
|
1107
|
-
opacity: 0;
|
|
1108
|
-
z-index: 20;
|
|
1109
|
-
cursor: pointer; }
|
|
1110
|
-
.multi-column-dropdown-wrap .server div p {
|
|
1111
|
-
padding: 12px;
|
|
1112
|
-
font-size: 16px;
|
|
1113
|
-
line-height: 20px;
|
|
1114
|
-
--text-opacity:1;
|
|
1115
|
-
color: #0b0c0c;
|
|
1116
|
-
color: rgba(11, 12, 12, var(--text-opacity)); }
|
|
1117
|
-
.multi-column-dropdown-wrap .server div .custom-checkbox, .multi-column-dropdown-wrap .server div .checkbox-wrap .custom-checkbox-emp, .checkbox-wrap .multi-column-dropdown-wrap .server div .custom-checkbox-emp {
|
|
1118
|
-
height: 25px;
|
|
1119
|
-
width: 25px;
|
|
1120
|
-
--border-opacity:1;
|
|
1121
|
-
border: 1px solid #464646;
|
|
1122
|
-
border-color: rgba(70, 70, 70, var(--border-opacity));
|
|
1123
|
-
margin: 8px; }
|
|
1124
|
-
.multi-column-dropdown-wrap .server div .custom-checkbox svg, .multi-column-dropdown-wrap .server div .checkbox-wrap .custom-checkbox-emp svg, .checkbox-wrap .multi-column-dropdown-wrap .server div .custom-checkbox-emp svg {
|
|
1125
|
-
opacity: 0;
|
|
1126
|
-
z-index: 10; }
|
|
1127
|
-
.multi-column-dropdown-wrap .server div input:checked ~ .custom-checkbox, .multi-column-dropdown-wrap .server div .checkbox-wrap .input-emp:checked ~ .custom-checkbox, .checkbox-wrap .multi-column-dropdown-wrap .server div .input-emp:checked ~ .custom-checkbox, .multi-column-dropdown-wrap .server div .checkbox-wrap input:checked ~ .custom-checkbox-emp, .checkbox-wrap .multi-column-dropdown-wrap .server div input:checked ~ .custom-checkbox-emp, .multi-column-dropdown-wrap .server div .checkbox-wrap .input-emp:checked ~ .custom-checkbox-emp, .checkbox-wrap .multi-column-dropdown-wrap .server div .input-emp:checked ~ .custom-checkbox-emp, .multi-column-dropdown-wrap .server div input:hover ~ .custom-checkbox, .multi-column-dropdown-wrap .server div .checkbox-wrap .input-emp:hover ~ .custom-checkbox, .checkbox-wrap .multi-column-dropdown-wrap .server div .input-emp:hover ~ .custom-checkbox, .multi-column-dropdown-wrap .server div .checkbox-wrap input:hover ~ .custom-checkbox-emp, .checkbox-wrap .multi-column-dropdown-wrap .server div input:hover ~ .custom-checkbox-emp, .multi-column-dropdown-wrap .server div .checkbox-wrap .input-emp:hover ~ .custom-checkbox-emp, .checkbox-wrap .multi-column-dropdown-wrap .server div .input-emp:hover ~ .custom-checkbox-emp {
|
|
1128
|
-
border-width: 1px;
|
|
1129
|
-
--border-opacity:1;
|
|
1130
|
-
border-color: #a82227;
|
|
1131
|
-
border-color: rgba(168, 34, 39, var(--border-opacity)); }
|
|
1132
|
-
.multi-column-dropdown-wrap .server div input:checked ~ .custom-checkbox svg, .multi-column-dropdown-wrap .server div .checkbox-wrap .input-emp:checked ~ .custom-checkbox svg, .checkbox-wrap .multi-column-dropdown-wrap .server div .input-emp:checked ~ .custom-checkbox svg, .multi-column-dropdown-wrap .server div .checkbox-wrap input:checked ~ .custom-checkbox-emp svg, .checkbox-wrap .multi-column-dropdown-wrap .server div input:checked ~ .custom-checkbox-emp svg, .multi-column-dropdown-wrap .server div .checkbox-wrap .input-emp:checked ~ .custom-checkbox-emp svg, .checkbox-wrap .multi-column-dropdown-wrap .server div .input-emp:checked ~ .custom-checkbox-emp svg {
|
|
1133
|
-
opacity: 1; }
|
|
1038
|
+
|
|
1134
1039
|
|
|
1135
1040
|
.select-wrap {
|
|
1136
1041
|
margin-bottom: 24px;
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
.multi-column-dropdown-wrap {
|
|
2
|
+
position: relative;
|
|
3
|
+
font-size: 16px;
|
|
4
|
+
line-height: 20px;
|
|
5
|
+
color: rgba(11, 12, 12, 1);
|
|
6
|
+
width: 100%;
|
|
7
|
+
|
|
8
|
+
.master,
|
|
9
|
+
.master-active {
|
|
10
|
+
position: relative;
|
|
11
|
+
border: 1px solid rgba(70, 70, 70, 1);
|
|
12
|
+
height: 2rem;
|
|
13
|
+
width: 100%;
|
|
14
|
+
|
|
15
|
+
input[type="text"] {
|
|
16
|
+
position: absolute;
|
|
17
|
+
top: 0;
|
|
18
|
+
left: 0;
|
|
19
|
+
padding-left: 8px;
|
|
20
|
+
min-height: 100%;
|
|
21
|
+
min-width: 100%;
|
|
22
|
+
opacity: 0;
|
|
23
|
+
|
|
24
|
+
&:focus {
|
|
25
|
+
outline: 1px solid transparent;
|
|
26
|
+
outline-offset: 2px;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.label {
|
|
31
|
+
display: flex;
|
|
32
|
+
justify-content: space-between;
|
|
33
|
+
align-items: center;
|
|
34
|
+
padding-left: 8px;
|
|
35
|
+
width: 100%;
|
|
36
|
+
height: 100%;
|
|
37
|
+
|
|
38
|
+
svg {
|
|
39
|
+
height: 2rem;
|
|
40
|
+
width: 2rem;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
&:hover {
|
|
45
|
+
border-color: rgba(168, 34, 39, 1);
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.master-active {
|
|
50
|
+
border: 1px solid rgba(168, 34, 39, 1);
|
|
51
|
+
|
|
52
|
+
input[type="text"] {
|
|
53
|
+
opacity: 1;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.label {
|
|
57
|
+
display: none;
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.server {
|
|
62
|
+
box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14),
|
|
63
|
+
0 3px 14px 2px rgba(0, 0, 0, 0.12),
|
|
64
|
+
0 5px 5px -3px rgba(0, 0, 0, 0.2);
|
|
65
|
+
top: 35px;
|
|
66
|
+
max-height: 20vmax;
|
|
67
|
+
overflow: auto;
|
|
68
|
+
position: absolute;
|
|
69
|
+
min-width: 100%;
|
|
70
|
+
z-index: 20;
|
|
71
|
+
|
|
72
|
+
div {
|
|
73
|
+
display: flex;
|
|
74
|
+
width: 100%;
|
|
75
|
+
background-color: rgba(255, 255, 255, 1);
|
|
76
|
+
|
|
77
|
+
&:hover {
|
|
78
|
+
background-color: rgba(238, 238, 238, 1);
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
input {
|
|
82
|
+
height: 44px;
|
|
83
|
+
position: absolute;
|
|
84
|
+
min-width: 100%;
|
|
85
|
+
opacity: 0;
|
|
86
|
+
z-index: 20;
|
|
87
|
+
cursor: pointer;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
p {
|
|
91
|
+
padding: 12px;
|
|
92
|
+
font-size: 16px;
|
|
93
|
+
line-height: 20px;
|
|
94
|
+
color: rgba(11, 12, 12, 1);
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.custom-checkbox {
|
|
98
|
+
height: 25px;
|
|
99
|
+
width: 25px;
|
|
100
|
+
border: 1px solid rgba(70, 70, 70, 1);
|
|
101
|
+
margin: 8px;
|
|
102
|
+
|
|
103
|
+
svg {
|
|
104
|
+
opacity: 0;
|
|
105
|
+
z-index: 10;
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
input:checked ~ .custom-checkbox {
|
|
110
|
+
border: 1px solid rgba(168, 34, 39, 1);
|
|
111
|
+
|
|
112
|
+
svg {
|
|
113
|
+
opacity: 1;
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
}
|
package/src/index.scss
CHANGED
|
@@ -109,13 +109,17 @@
|
|
|
109
109
|
@import "./components/bmc.scss";
|
|
110
110
|
@import "./components/deonar.scss";
|
|
111
111
|
@import "./components/ebe.scss";
|
|
112
|
+
@import "./components/multicolumn.scss";
|
|
113
|
+
|
|
112
114
|
|
|
113
115
|
.display-none {
|
|
114
116
|
display: none;
|
|
115
117
|
}
|
|
118
|
+
|
|
116
119
|
.primary-label-btn {
|
|
117
120
|
margin: 10px auto 0px !important;
|
|
118
121
|
}
|
|
122
|
+
|
|
119
123
|
.p-unset {
|
|
120
124
|
padding: unset !important;
|
|
121
125
|
}
|
|
@@ -127,6 +131,7 @@
|
|
|
127
131
|
.display-flex-gap-2 {
|
|
128
132
|
@apply flex gap-3;
|
|
129
133
|
}
|
|
134
|
+
|
|
130
135
|
.rm-mb {
|
|
131
136
|
margin-bottom: unset !important;
|
|
132
137
|
}
|
|
@@ -232,6 +237,7 @@
|
|
|
232
237
|
position: unset;
|
|
233
238
|
}
|
|
234
239
|
}
|
|
240
|
+
|
|
235
241
|
.application-table-container {
|
|
236
242
|
@apply mt-lg ml-lg flex-1;
|
|
237
243
|
}
|
|
@@ -285,14 +291,17 @@
|
|
|
285
291
|
.react-time-picker {
|
|
286
292
|
width: 194px;
|
|
287
293
|
height: 2.5rem;
|
|
294
|
+
|
|
288
295
|
&__wrapper {
|
|
289
296
|
border: 2px solid #0b0c0c;
|
|
290
297
|
padding-left: 16px;
|
|
291
298
|
}
|
|
299
|
+
|
|
292
300
|
&__inputGroup__input {
|
|
293
301
|
@apply px-sm;
|
|
294
302
|
line-height: 2.5rem;
|
|
295
303
|
min-width: 16px;
|
|
304
|
+
|
|
296
305
|
&:focus {
|
|
297
306
|
outline: 2px solid black;
|
|
298
307
|
}
|
|
@@ -309,6 +318,7 @@ input[type="number"]::-webkit-outer-spin-button {
|
|
|
309
318
|
-webkit-appearance: none;
|
|
310
319
|
margin: 0;
|
|
311
320
|
}
|
|
321
|
+
|
|
312
322
|
input[type="number"] {
|
|
313
323
|
-moz-appearance: textfield;
|
|
314
324
|
}
|
|
@@ -321,8 +331,10 @@ input[type="number"] {
|
|
|
321
331
|
flex: 1;
|
|
322
332
|
max-height: 75vh;
|
|
323
333
|
overflow: scroll;
|
|
324
|
-
-ms-overflow-style: none;
|
|
325
|
-
|
|
334
|
+
-ms-overflow-style: none;
|
|
335
|
+
/* IE and Edge */
|
|
336
|
+
scrollbar-width: none;
|
|
337
|
+
/* Firefox */
|
|
326
338
|
|
|
327
339
|
&::-webkit-scrollbar {
|
|
328
340
|
display: none;
|
|
@@ -425,6 +437,7 @@ input[type="number"] {
|
|
|
425
437
|
text-indent: 5px;
|
|
426
438
|
padding: 6px 0px;
|
|
427
439
|
}
|
|
440
|
+
|
|
428
441
|
button {
|
|
429
442
|
@apply outline-none;
|
|
430
443
|
border: 0px;
|
|
@@ -435,6 +448,7 @@ input[type="number"] {
|
|
|
435
448
|
|
|
436
449
|
.text-input {
|
|
437
450
|
@apply relative w-full;
|
|
451
|
+
|
|
438
452
|
input {
|
|
439
453
|
&:hover {
|
|
440
454
|
@apply border-2 border-solid border-primary-main;
|
|
@@ -523,16 +537,19 @@ input[type="number"] {
|
|
|
523
537
|
align-items: center;
|
|
524
538
|
flex-direction: column;
|
|
525
539
|
position: absolute !important;
|
|
540
|
+
|
|
526
541
|
.error-container {
|
|
527
542
|
display: flex;
|
|
528
543
|
width: 400px;
|
|
529
544
|
justify-content: center;
|
|
530
545
|
align-items: center;
|
|
531
546
|
flex-direction: column;
|
|
547
|
+
|
|
532
548
|
h1 {
|
|
533
549
|
font-size: 32px;
|
|
534
550
|
font-weight: bold;
|
|
535
551
|
}
|
|
552
|
+
|
|
536
553
|
button {
|
|
537
554
|
height: 40px;
|
|
538
555
|
width: 153px;
|
|
@@ -558,10 +575,12 @@ input[type="number"] {
|
|
|
558
575
|
.full-width-card {
|
|
559
576
|
width: 92vw !important;
|
|
560
577
|
}
|
|
578
|
+
|
|
561
579
|
.full-employee-card-link {
|
|
562
580
|
width: 100% !important;
|
|
563
581
|
margin: 7px 0px;
|
|
564
582
|
}
|
|
583
|
+
|
|
565
584
|
.full-employee-card-height {
|
|
566
585
|
height: unset !important;
|
|
567
586
|
}
|
|
@@ -570,15 +589,18 @@ input[type="number"] {
|
|
|
570
589
|
.full-employee-card-height {
|
|
571
590
|
height: 196px !important;
|
|
572
591
|
}
|
|
592
|
+
|
|
573
593
|
.full-employee-card-link {
|
|
574
594
|
width: 30% !important;
|
|
575
595
|
}
|
|
596
|
+
|
|
576
597
|
.full-width-card {
|
|
577
598
|
@apply w-full !important;
|
|
578
599
|
}
|
|
579
600
|
}
|
|
580
|
-
|
|
581
|
-
}
|
|
601
|
+
|
|
602
|
+
.applications-list-container {}
|
|
603
|
+
|
|
582
604
|
.complaint-summary {
|
|
583
605
|
@media (min-width: 780px) {
|
|
584
606
|
flex: 1 0 auto;
|
|
@@ -597,6 +619,7 @@ input[type="number"] {
|
|
|
597
619
|
padding-right: 16px;
|
|
598
620
|
}
|
|
599
621
|
}
|
|
622
|
+
|
|
600
623
|
@media (min-width: 780px) {
|
|
601
624
|
.citizen-card-container {
|
|
602
625
|
padding-left: 15px;
|
|
@@ -606,6 +629,7 @@ input[type="number"] {
|
|
|
606
629
|
}
|
|
607
630
|
|
|
608
631
|
@media (min-width: 780px) {
|
|
632
|
+
|
|
609
633
|
.citizen-obps-wrapper,
|
|
610
634
|
.selection-card-wrapper,
|
|
611
635
|
.fsm-citizen-wrapper,
|
|
@@ -625,12 +649,15 @@ input[type="number"] {
|
|
|
625
649
|
margin-top: 1rem;
|
|
626
650
|
}
|
|
627
651
|
}
|
|
652
|
+
|
|
628
653
|
@media only screen and (max-width: 768px) {
|
|
654
|
+
|
|
629
655
|
/* For mobile phones: */
|
|
630
656
|
.error-boundary {
|
|
631
657
|
height: 75vh;
|
|
632
658
|
}
|
|
633
659
|
}
|
|
660
|
+
|
|
634
661
|
.employee-app-wrapper {
|
|
635
662
|
min-height: calc(100vh - 8em);
|
|
636
663
|
}
|
|
@@ -641,9 +668,11 @@ input[type="number"] {
|
|
|
641
668
|
flex-direction: row-reverse !important;
|
|
642
669
|
width: 100% !important;
|
|
643
670
|
align-items: center;
|
|
671
|
+
|
|
644
672
|
button {
|
|
645
673
|
width: 240px !important;
|
|
646
674
|
}
|
|
675
|
+
|
|
647
676
|
p {
|
|
648
677
|
width: unset;
|
|
649
678
|
margin-right: 1rem;
|
|
@@ -668,6 +697,7 @@ input[type="number"] {
|
|
|
668
697
|
padding-bottom: 8px;
|
|
669
698
|
margin-bottom: 8px;
|
|
670
699
|
}
|
|
700
|
+
|
|
671
701
|
.row {
|
|
672
702
|
color: #b1b4b6;
|
|
673
703
|
font-weight: 700;
|
|
@@ -686,11 +716,13 @@ input[type="number"] {
|
|
|
686
716
|
.connection-details-old-value-wrapper,
|
|
687
717
|
.plumber-details-old-value-wrapper {
|
|
688
718
|
flex: 1 1 auto;
|
|
719
|
+
|
|
689
720
|
.old-value-null-wrapper {
|
|
690
721
|
visibility: hidden;
|
|
691
722
|
padding-bottom: 8px;
|
|
692
723
|
margin-bottom: 8px;
|
|
693
724
|
}
|
|
725
|
+
|
|
694
726
|
.row {
|
|
695
727
|
color: #b1b4b6;
|
|
696
728
|
font-weight: 700;
|
|
@@ -702,6 +734,7 @@ input[type="number"] {
|
|
|
702
734
|
padding: 1rem;
|
|
703
735
|
font-weight: 400;
|
|
704
736
|
}
|
|
737
|
+
|
|
705
738
|
.modal-body-ws {
|
|
706
739
|
padding: 1rem;
|
|
707
740
|
font-weight: 700;
|
|
@@ -709,9 +742,11 @@ input[type="number"] {
|
|
|
709
742
|
font-size: 24px;
|
|
710
743
|
margin-bottom: 1rem;
|
|
711
744
|
}
|
|
745
|
+
|
|
712
746
|
.privacy-icon {
|
|
713
747
|
cursor: pointer;
|
|
714
748
|
}
|
|
749
|
+
|
|
715
750
|
.privacy-icon:hover {
|
|
716
751
|
path {
|
|
717
752
|
fill: rgba(244, 119, 56, 1);
|
|
@@ -721,9 +756,11 @@ input[type="number"] {
|
|
|
721
756
|
.employee-app-wrapper {
|
|
722
757
|
min-height: calc(100vh - 8em);
|
|
723
758
|
}
|
|
759
|
+
|
|
724
760
|
.submit-bar header {
|
|
725
761
|
line-height: 2rem !important;
|
|
726
762
|
}
|
|
763
|
+
|
|
727
764
|
.logo-removeBorderRadiusLogo svg {
|
|
728
765
|
width: 50px;
|
|
729
766
|
height: 60px;
|
|
@@ -732,11 +769,13 @@ input[type="number"] {
|
|
|
732
769
|
.icon-banner-employee {
|
|
733
770
|
background-color: #d7aefc !important;
|
|
734
771
|
}
|
|
772
|
+
|
|
735
773
|
.icon-banner-employee svg {
|
|
736
774
|
background-color: #bf2f3b !important;
|
|
737
775
|
width: 40px;
|
|
738
776
|
height: 40px;
|
|
739
777
|
}
|
|
778
|
+
|
|
740
779
|
.inboxButton {
|
|
741
780
|
border: none;
|
|
742
781
|
color: white;
|
|
@@ -751,10 +790,12 @@ input[type="number"] {
|
|
|
751
790
|
font-family: sans-serif;
|
|
752
791
|
font-weight: 700;
|
|
753
792
|
}
|
|
793
|
+
|
|
754
794
|
.employee .inboxButton {
|
|
755
795
|
padding: 5px 15px;
|
|
756
796
|
background: #ba2b36;
|
|
757
797
|
}
|
|
798
|
+
|
|
758
799
|
.citizen .inboxButton {
|
|
759
800
|
padding: 15px;
|
|
760
801
|
font-size: 1.2rem;
|
|
@@ -764,4 +805,4 @@ input[type="number"] {
|
|
|
764
805
|
.citizen .inboxButton {
|
|
765
806
|
font-size: 1rem;
|
|
766
807
|
}
|
|
767
|
-
}
|
|
808
|
+
}
|