@djb25/digit-ui-css 1.0.25 → 1.0.26
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 +1 -1
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/components/hoc/InboxComposer.scss +1 -1
- package/src/components/staticSideBar.scss +207 -1
- package/src/index.scss +7 -0
- package/src/pages/citizen/HomePageWrapper.scss +263 -83
- package/src/pages/employee/inbox.scss +2 -0
- package/src/pages/employee/index.scss +20 -1
package/package.json
CHANGED
|
@@ -24,4 +24,210 @@
|
|
|
24
24
|
margin-left: 1em;
|
|
25
25
|
}
|
|
26
26
|
}
|
|
27
|
-
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
.citizen-static-sidebar {
|
|
31
|
+
--sidebar-expanded: 260px;
|
|
32
|
+
--sidebar-collapsed: 76px;
|
|
33
|
+
--sidebar-bg: #ffffff;
|
|
34
|
+
--sidebar-border: #e5edf6;
|
|
35
|
+
--sidebar-accent: #1a67a3;
|
|
36
|
+
--sidebar-text: #0f172a;
|
|
37
|
+
--sidebar-muted: #64748b;
|
|
38
|
+
|
|
39
|
+
width: var(--sidebar-expanded);
|
|
40
|
+
background: var(--sidebar-bg);
|
|
41
|
+
border: 1px solid var(--sidebar-border);
|
|
42
|
+
box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
|
|
43
|
+
display: flex;
|
|
44
|
+
flex-direction: column;
|
|
45
|
+
gap: 8px;
|
|
46
|
+
padding: 10px 8px 14px;
|
|
47
|
+
transition: width 0.3s ease, box-shadow 0.3s ease;
|
|
48
|
+
overflow: hidden;
|
|
49
|
+
|
|
50
|
+
padding-top: 56px;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.citizen-static-sidebar.expanded {
|
|
54
|
+
width: var(--sidebar-expanded);
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.citizen-static-sidebar.collapsed {
|
|
58
|
+
width: var(--sidebar-collapsed);
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.citizen-sidebar-header {
|
|
62
|
+
display: flex;
|
|
63
|
+
align-items: center;
|
|
64
|
+
justify-content: space-between;
|
|
65
|
+
padding: 8px 10px 6px;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.citizen-sidebar-brand {
|
|
69
|
+
display: flex;
|
|
70
|
+
align-items: center;
|
|
71
|
+
gap: 10px;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.citizen-sidebar-brand-dot {
|
|
75
|
+
width: 10px;
|
|
76
|
+
height: 10px;
|
|
77
|
+
border-radius: 999px;
|
|
78
|
+
background: linear-gradient(135deg, #1a67a3, #3b82f6);
|
|
79
|
+
box-shadow: 0 0 0 5px rgba(59, 130, 246, 0.12);
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.citizen-sidebar-brand-text {
|
|
83
|
+
font-size: 0.95rem;
|
|
84
|
+
font-weight: 700;
|
|
85
|
+
color: var(--sidebar-text);
|
|
86
|
+
letter-spacing: 0.4px;
|
|
87
|
+
transition: opacity 0.2s ease, width 0.2s ease;
|
|
88
|
+
white-space: nowrap;
|
|
89
|
+
overflow: hidden;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.citizen-sidebar-toggle {
|
|
93
|
+
background: #f1f5f9;
|
|
94
|
+
border: 1px solid #e2e8f0;
|
|
95
|
+
width: 32px;
|
|
96
|
+
height: 32px;
|
|
97
|
+
border-radius: 10px;
|
|
98
|
+
display: flex;
|
|
99
|
+
align-items: center;
|
|
100
|
+
justify-content: center;
|
|
101
|
+
color: var(--sidebar-muted);
|
|
102
|
+
cursor: pointer;
|
|
103
|
+
transition: all 0.2s ease;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.citizen-sidebar-toggle:hover {
|
|
107
|
+
background: #e2e8f0;
|
|
108
|
+
color: var(--sidebar-text);
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.citizen-static-sidebar .profile-section {
|
|
112
|
+
background: #f8fafc;
|
|
113
|
+
border-radius: 14px;
|
|
114
|
+
padding: 16px 10px 12px;
|
|
115
|
+
margin: 0 6px;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.citizen-static-sidebar .profile-section img {
|
|
119
|
+
width: 64px;
|
|
120
|
+
height: 64px;
|
|
121
|
+
margin: 0 auto 10px;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.citizen-static-sidebar .drawer-desktop {
|
|
125
|
+
background: #ffffff;
|
|
126
|
+
border-radius: 14px;
|
|
127
|
+
padding: 6px;
|
|
128
|
+
margin: 0 4px;
|
|
129
|
+
border: 1px solid #eef2f7;
|
|
130
|
+
flex: 1;
|
|
131
|
+
overflow-y: auto;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.citizen-static-sidebar .drawer-desktop .sidebar-list {
|
|
135
|
+
padding: 4px;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.citizen-static-sidebar .drawer-desktop .sidebar-list.active {
|
|
139
|
+
border-left: none;
|
|
140
|
+
background: #eef6ff;
|
|
141
|
+
border-radius: 12px;
|
|
142
|
+
padding-left: 4px;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.citizen-static-sidebar .drawer-desktop .menu-item {
|
|
146
|
+
display: flex;
|
|
147
|
+
align-items: center;
|
|
148
|
+
gap: 12px;
|
|
149
|
+
padding: 8px 10px;
|
|
150
|
+
line-height: 1.3;
|
|
151
|
+
border-radius: 12px;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.citizen-static-sidebar .drawer-desktop .menu-item .icon {
|
|
155
|
+
margin-top: 0;
|
|
156
|
+
float: none;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.citizen-static-sidebar .drawer-desktop .menu-item .icon + .menu-label {
|
|
160
|
+
margin-left: 0;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.citizen-static-sidebar .drawer-desktop .menu-label {
|
|
164
|
+
font-size: 14px;
|
|
165
|
+
font-weight: 500;
|
|
166
|
+
color: var(--sidebar-text);
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.citizen-static-sidebar .drawer-desktop .sidebar-list.active .menu-label {
|
|
170
|
+
color: var(--sidebar-accent);
|
|
171
|
+
font-weight: 600;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.citizen-static-sidebar.collapsed .citizen-sidebar-brand-text,
|
|
175
|
+
.citizen-static-sidebar.collapsed .drawer-desktop .menu-label {
|
|
176
|
+
opacity: 0;
|
|
177
|
+
width: 0;
|
|
178
|
+
margin-left: 0;
|
|
179
|
+
pointer-events: none;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
.citizen-static-sidebar.collapsed .citizen-sidebar-header {
|
|
183
|
+
flex-direction: column;
|
|
184
|
+
gap: 10px;
|
|
185
|
+
padding: 8px 6px;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.citizen-static-sidebar.collapsed .citizen-sidebar-brand {
|
|
189
|
+
justify-content: center;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.citizen-static-sidebar.collapsed .drawer-desktop .menu-item {
|
|
193
|
+
justify-content: center;
|
|
194
|
+
align-items: center;
|
|
195
|
+
width: 100%;
|
|
196
|
+
padding: 10px 0;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
.citizen-static-sidebar.collapsed .drawer-desktop .sidebar-list.active {
|
|
200
|
+
background: #e0efff;
|
|
201
|
+
padding: 6px 4px;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.citizen-static-sidebar.collapsed .drawer-desktop .sidebar-list {
|
|
205
|
+
display: flex;
|
|
206
|
+
justify-content: center;
|
|
207
|
+
padding: 6px 4px;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
.citizen-static-sidebar.collapsed .drawer-desktop .menu-item .icon {
|
|
211
|
+
margin: 0;
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
.citizen-static-sidebar.collapsed .profile-section {
|
|
215
|
+
padding: 14px 6px 10px;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
.citizen-static-sidebar.collapsed .profile-section img {
|
|
219
|
+
width: 44px;
|
|
220
|
+
height: 44px;
|
|
221
|
+
margin: 0 auto;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
.citizen-static-sidebar.collapsed .profile-section .label-container,
|
|
225
|
+
.citizen-static-sidebar.collapsed .profile-section .profile-divider {
|
|
226
|
+
display: none;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
@media (max-width: 780px) {
|
|
230
|
+
.citizen-sidebar-toggle {
|
|
231
|
+
display: none;
|
|
232
|
+
}
|
|
233
|
+
}
|
package/src/index.scss
CHANGED
|
@@ -562,7 +562,14 @@ input[type="number"] {
|
|
|
562
562
|
overflow-x: scroll;
|
|
563
563
|
border-radius: 6px;
|
|
564
564
|
flex: 1 1 0%;
|
|
565
|
+
scrollbar-width: none;
|
|
565
566
|
}
|
|
567
|
+
|
|
568
|
+
/* Chrome, Edge, Safari */
|
|
569
|
+
.result::-webkit-scrollbar:horizontal {
|
|
570
|
+
display: none;
|
|
571
|
+
}
|
|
572
|
+
|
|
566
573
|
.inbox-search-container {
|
|
567
574
|
.result {
|
|
568
575
|
@apply mt-lg;
|
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
.HomePageWrapper {
|
|
2
|
-
margin-top:
|
|
2
|
+
margin-top: 0;
|
|
3
|
+
padding: 24px 24px 56px;
|
|
4
|
+
margin-left: auto;
|
|
5
|
+
margin-right: auto;
|
|
6
|
+
display: flex;
|
|
7
|
+
flex-direction: column;
|
|
8
|
+
gap: 24px;
|
|
9
|
+
position: relative;
|
|
10
|
+
align-items: stretch;
|
|
11
|
+
z-index: 1;
|
|
3
12
|
|
|
4
13
|
.BannerWithSearch {
|
|
5
14
|
margin-bottom: 40px;
|
|
@@ -33,22 +42,63 @@
|
|
|
33
42
|
|
|
34
43
|
.WhatsNewSection {
|
|
35
44
|
@apply m-sm;
|
|
36
|
-
padding:
|
|
45
|
+
padding: 24px 32px;
|
|
46
|
+
background: rgba(255, 255, 255, 0.85);
|
|
47
|
+
backdrop-filter: blur(16px);
|
|
48
|
+
-webkit-backdrop-filter: blur(16px);
|
|
49
|
+
box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 1);
|
|
50
|
+
border: 1px solid rgba(255, 255, 255, 0.8);
|
|
51
|
+
border-radius: 20px;
|
|
52
|
+
position: relative;
|
|
53
|
+
margin: 0px !important;
|
|
54
|
+
|
|
55
|
+
&::before {
|
|
56
|
+
content: "";
|
|
57
|
+
position: absolute;
|
|
58
|
+
left: 32px;
|
|
59
|
+
right: 32px;
|
|
60
|
+
top: 0;
|
|
61
|
+
height: 4px;
|
|
62
|
+
border-radius: 999px;
|
|
63
|
+
background: linear-gradient(90deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.8), rgba(59, 130, 246, 0.1));
|
|
64
|
+
}
|
|
37
65
|
|
|
38
66
|
.headSection {
|
|
39
67
|
@apply flex mb-sm justify-between;
|
|
68
|
+
align-items: center;
|
|
40
69
|
|
|
41
70
|
h2 {
|
|
42
|
-
@apply text-heading-s font-bold text-text-primary
|
|
71
|
+
@apply text-heading-s font-bold text-text-primary;
|
|
72
|
+
padding-left: 0;
|
|
73
|
+
font-size: 22px;
|
|
74
|
+
color: #1e293b;
|
|
43
75
|
}
|
|
44
76
|
|
|
45
77
|
p {
|
|
46
|
-
@apply
|
|
78
|
+
@apply font-medium cursor-pointer;
|
|
79
|
+
color: #fff;
|
|
80
|
+
background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
|
|
81
|
+
padding: 8px 16px;
|
|
82
|
+
border-radius: 999px;
|
|
83
|
+
font-size: 14px;
|
|
84
|
+
box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
|
|
85
|
+
transition: all 0.3s ease;
|
|
86
|
+
|
|
87
|
+
&:hover {
|
|
88
|
+
transform: translateY(-2px);
|
|
89
|
+
box-shadow: 0 6px 14px rgba(59, 130, 246, 0.4);
|
|
90
|
+
background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
|
|
91
|
+
}
|
|
47
92
|
}
|
|
48
93
|
}
|
|
49
94
|
|
|
50
95
|
@media (min-width: 780px) {
|
|
51
|
-
padding:
|
|
96
|
+
padding: 32px 36px;
|
|
97
|
+
|
|
98
|
+
&::before {
|
|
99
|
+
left: 36px;
|
|
100
|
+
right: 36px;
|
|
101
|
+
}
|
|
52
102
|
}
|
|
53
103
|
}
|
|
54
104
|
|
|
@@ -63,14 +113,27 @@
|
|
|
63
113
|
}
|
|
64
114
|
}
|
|
65
115
|
|
|
66
|
-
/* ===== Citizen Theme
|
|
116
|
+
/* ===== Citizen Theme ===== */
|
|
67
117
|
.citizen-app-container {
|
|
68
118
|
width: 100%;
|
|
69
119
|
display: flex;
|
|
70
120
|
flex-direction: column;
|
|
71
|
-
gap:
|
|
72
|
-
padding:
|
|
73
|
-
margin-top:
|
|
121
|
+
gap: 30px;
|
|
122
|
+
padding: 30px 32px 40px;
|
|
123
|
+
margin-top: 10px;
|
|
124
|
+
background: rgba(255, 255, 255, 0.7);
|
|
125
|
+
backdrop-filter: blur(20px);
|
|
126
|
+
-webkit-backdrop-filter: blur(20px);
|
|
127
|
+
border-radius: 24px;
|
|
128
|
+
border: 1px solid rgba(255, 255, 255, 0.8);
|
|
129
|
+
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 1);
|
|
130
|
+
position: relative;
|
|
131
|
+
overflow: hidden;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.citizen-app-container>* {
|
|
135
|
+
position: relative;
|
|
136
|
+
z-index: 1;
|
|
74
137
|
}
|
|
75
138
|
|
|
76
139
|
.citizen-module-header {
|
|
@@ -81,101 +144,181 @@
|
|
|
81
144
|
|
|
82
145
|
.citizen-header-top-section {
|
|
83
146
|
width: 100% !important;
|
|
84
|
-
background: #
|
|
85
|
-
padding:
|
|
86
|
-
border-radius:
|
|
147
|
+
background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%) !important;
|
|
148
|
+
padding: 24px 32px !important;
|
|
149
|
+
border-radius: 20px !important;
|
|
87
150
|
display: flex !important;
|
|
88
151
|
align-items: center !important;
|
|
89
|
-
justify-content:
|
|
90
|
-
min-height:
|
|
91
|
-
box-shadow: 0
|
|
152
|
+
justify-content: space-between !important;
|
|
153
|
+
min-height: 80px !important;
|
|
154
|
+
box-shadow: 0 15px 30px rgba(59, 130, 246, 0.3) !important;
|
|
155
|
+
position: relative;
|
|
156
|
+
overflow: hidden;
|
|
157
|
+
|
|
158
|
+
&::before {
|
|
159
|
+
content: "";
|
|
160
|
+
position: absolute;
|
|
161
|
+
top: 0;
|
|
162
|
+
left: 0;
|
|
163
|
+
width: 100%;
|
|
164
|
+
height: 100%;
|
|
165
|
+
background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='rgba(255,255,255,0.05)' fill-rule='evenodd'/%3E%3C/svg%3E");
|
|
166
|
+
opacity: 0.8;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
&::after {
|
|
170
|
+
content: "";
|
|
171
|
+
position: absolute;
|
|
172
|
+
right: -80px;
|
|
173
|
+
top: -80px;
|
|
174
|
+
width: 250px;
|
|
175
|
+
height: 250px;
|
|
176
|
+
background: radial-gradient(circle, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
|
|
177
|
+
border-radius: 50%;
|
|
178
|
+
}
|
|
92
179
|
}
|
|
93
180
|
|
|
94
181
|
.citizen-header-title {
|
|
95
182
|
margin: 0;
|
|
96
|
-
font-size:
|
|
97
|
-
font-weight:
|
|
183
|
+
font-size: 28px;
|
|
184
|
+
font-weight: 800;
|
|
98
185
|
color: #ffffff;
|
|
186
|
+
letter-spacing: 0.5px;
|
|
187
|
+
text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
|
|
99
188
|
}
|
|
100
189
|
}
|
|
101
190
|
|
|
102
191
|
.citizen-module-grid {
|
|
103
192
|
display: grid;
|
|
104
|
-
grid-template-columns: repeat(
|
|
105
|
-
gap:
|
|
193
|
+
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
|
|
194
|
+
gap: 24px;
|
|
106
195
|
padding: 0;
|
|
107
196
|
width: 100%;
|
|
197
|
+
}
|
|
198
|
+
}
|
|
108
199
|
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
200
|
+
/* ============================================================
|
|
201
|
+
.citizen-service-card — MUST be at root level (not nested
|
|
202
|
+
inside .HomePageWrapper) so BEM & selectors compile correctly
|
|
203
|
+
============================================================ */
|
|
204
|
+
.citizen-service-card {
|
|
205
|
+
background: #ffffff !important;
|
|
206
|
+
border: 0.5px solid rgba(0, 0, 0, 0.08) !important;
|
|
207
|
+
border-radius: 16px !important;
|
|
208
|
+
padding: 18px 16px !important;
|
|
209
|
+
display: flex !important;
|
|
210
|
+
flex-direction: row !important;
|
|
211
|
+
align-items: center !important;
|
|
212
|
+
gap: 14px !important;
|
|
213
|
+
cursor: pointer !important;
|
|
214
|
+
min-height: 82px !important;
|
|
215
|
+
overflow: hidden !important;
|
|
216
|
+
position: relative;
|
|
217
|
+
transition: border-color 0.25s ease,
|
|
218
|
+
transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
|
|
219
|
+
background 0.2s ease !important;
|
|
220
|
+
|
|
221
|
+
&:hover {
|
|
222
|
+
border-color: #93c5fd !important;
|
|
223
|
+
transform: translateY(-3px) !important;
|
|
224
|
+
background: #f8fbff !important;
|
|
225
|
+
}
|
|
112
226
|
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
227
|
+
&__icon {
|
|
228
|
+
width: 44px !important;
|
|
229
|
+
height: 44px !important;
|
|
230
|
+
flex-shrink: 0 !important;
|
|
231
|
+
background: #eff6ff;
|
|
232
|
+
border-radius: 12px;
|
|
233
|
+
display: flex !important;
|
|
234
|
+
align-items: center !important;
|
|
235
|
+
justify-content: center !important;
|
|
236
|
+
padding: 10px;
|
|
237
|
+
transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
|
|
238
|
+
background 0.25s ease;
|
|
116
239
|
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
240
|
+
svg {
|
|
241
|
+
width: 22px !important;
|
|
242
|
+
height: 22px !important;
|
|
243
|
+
fill: #2563eb !important;
|
|
120
244
|
}
|
|
121
245
|
}
|
|
122
246
|
|
|
123
|
-
|
|
124
|
-
background: #
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
247
|
+
&:hover &__icon {
|
|
248
|
+
background: #dbeafe;
|
|
249
|
+
transform: scale(1.1) rotate(4deg);
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
/* Fixed height + overflow:hidden is what clips the sliding text */
|
|
253
|
+
&__content {
|
|
254
|
+
flex: 1;
|
|
255
|
+
position: relative;
|
|
256
|
+
height: 40px;
|
|
257
|
+
overflow: hidden;
|
|
258
|
+
display: block;
|
|
259
|
+
/* NOT flex — flex breaks absolute child stacking */
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
/* Label: visible by default, slides out upward on hover */
|
|
263
|
+
&__label {
|
|
264
|
+
position: absolute !important;
|
|
265
|
+
inset: 0 !important;
|
|
128
266
|
display: flex !important;
|
|
129
|
-
flex-direction: row !important;
|
|
130
267
|
align-items: center !important;
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
}
|
|
142
|
-
|
|
143
|
-
&__icon {
|
|
144
|
-
width: 40px !important;
|
|
145
|
-
height: 40px !important;
|
|
146
|
-
display: flex !important;
|
|
147
|
-
align-items: center !important;
|
|
148
|
-
justify-content: center !important;
|
|
149
|
-
flex-shrink: 0 !important;
|
|
268
|
+
margin: 0 !important;
|
|
269
|
+
font-size: 14px !important;
|
|
270
|
+
font-weight: 500 !important;
|
|
271
|
+
color: #1e293b !important;
|
|
272
|
+
line-height: 1.35 !important;
|
|
273
|
+
transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
|
|
274
|
+
opacity 0.25s ease !important;
|
|
275
|
+
transform: translateY(0);
|
|
276
|
+
opacity: 1;
|
|
277
|
+
}
|
|
150
278
|
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
279
|
+
/* Description: hidden below by default, slides up into view on hover */
|
|
280
|
+
&__description {
|
|
281
|
+
position: absolute !important;
|
|
282
|
+
inset: 0 !important;
|
|
283
|
+
display: flex !important;
|
|
284
|
+
align-items: center !important;
|
|
285
|
+
margin: 0 !important;
|
|
286
|
+
font-size: 12.5px !important;
|
|
287
|
+
font-weight: 400 !important;
|
|
288
|
+
color: #2563eb !important;
|
|
289
|
+
line-height: 1.4 !important;
|
|
290
|
+
transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
|
|
291
|
+
opacity 0.25s ease !important;
|
|
292
|
+
transform: translateY(110%);
|
|
293
|
+
/* starts hidden below */
|
|
294
|
+
opacity: 0;
|
|
295
|
+
}
|
|
155
296
|
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
297
|
+
&:hover &__label {
|
|
298
|
+
transform: translateY(-110%);
|
|
299
|
+
/* slides out upward */
|
|
300
|
+
opacity: 0;
|
|
301
|
+
}
|
|
161
302
|
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
color: #333333 !important;
|
|
167
|
-
text-align: left !important;
|
|
168
|
-
width: auto !important;
|
|
169
|
-
flex: 1 !important;
|
|
170
|
-
}
|
|
303
|
+
&:hover &__description {
|
|
304
|
+
transform: translateY(0);
|
|
305
|
+
/* slides in from below */
|
|
306
|
+
opacity: 1;
|
|
171
307
|
}
|
|
172
308
|
}
|
|
173
309
|
|
|
310
|
+
/* ============================================================
|
|
311
|
+
Rest of the file — unchanged
|
|
312
|
+
============================================================ */
|
|
174
313
|
@media (min-width: 780px) {
|
|
175
314
|
.SideBarStatic {
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
315
|
+
display: flex;
|
|
316
|
+
align-items: flex-start;
|
|
317
|
+
position: sticky;
|
|
318
|
+
top: 58px;
|
|
319
|
+
height: calc(100vh - 58px);
|
|
320
|
+
min-height: calc(100vh - 58px);
|
|
321
|
+
align-self: flex-start;
|
|
179
322
|
}
|
|
180
323
|
}
|
|
181
324
|
|
|
@@ -186,18 +329,44 @@
|
|
|
186
329
|
}
|
|
187
330
|
|
|
188
331
|
.HomePageContainer {
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
332
|
+
flex: 1;
|
|
333
|
+
min-width: 0;
|
|
334
|
+
position: relative;
|
|
335
|
+
overflow: hidden;
|
|
336
|
+
padding-bottom: 40px;
|
|
337
|
+
|
|
338
|
+
&::before {
|
|
339
|
+
content: "";
|
|
340
|
+
position: absolute;
|
|
341
|
+
right: -5%;
|
|
342
|
+
top: -5%;
|
|
343
|
+
width: 50vw;
|
|
344
|
+
height: 50vw;
|
|
345
|
+
background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, rgba(59, 130, 246, 0) 70%);
|
|
346
|
+
border-radius: 50%;
|
|
347
|
+
opacity: 0.8;
|
|
348
|
+
z-index: 0;
|
|
349
|
+
pointer-events: none;
|
|
193
350
|
}
|
|
194
|
-
}
|
|
195
351
|
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
352
|
+
&::after {
|
|
353
|
+
content: "";
|
|
354
|
+
position: absolute;
|
|
355
|
+
left: -10%;
|
|
356
|
+
bottom: -10%;
|
|
357
|
+
width: 60vw;
|
|
358
|
+
height: 60vw;
|
|
359
|
+
background: radial-gradient(circle, rgba(147, 197, 253, 0.15) 0%, rgba(147, 197, 253, 0) 70%);
|
|
360
|
+
border-radius: 50%;
|
|
361
|
+
opacity: 0.8;
|
|
362
|
+
z-index: 0;
|
|
363
|
+
pointer-events: none;
|
|
199
364
|
}
|
|
365
|
+
}
|
|
200
366
|
|
|
367
|
+
.moduleLinkHomePage {
|
|
368
|
+
flex: 1;
|
|
369
|
+
min-width: 0;
|
|
201
370
|
margin-top: -25px;
|
|
202
371
|
|
|
203
372
|
img {
|
|
@@ -238,6 +407,7 @@
|
|
|
238
407
|
@screen dt {
|
|
239
408
|
.HomePageWrapper {
|
|
240
409
|
width: 100%;
|
|
410
|
+
padding: 28px 32px 64px;
|
|
241
411
|
|
|
242
412
|
.BannerWithSearch {
|
|
243
413
|
margin-bottom: 56px;
|
|
@@ -262,7 +432,6 @@
|
|
|
262
432
|
width: 100%;
|
|
263
433
|
}
|
|
264
434
|
}
|
|
265
|
-
|
|
266
435
|
}
|
|
267
436
|
|
|
268
437
|
.moduleLinkHomePage {
|
|
@@ -285,4 +454,15 @@
|
|
|
285
454
|
.moduleLinkHomePageModuleLinks {
|
|
286
455
|
width: 100%;
|
|
287
456
|
}
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
.citizen-home-container {
|
|
460
|
+
display: flex;
|
|
461
|
+
width: 100%;
|
|
462
|
+
align-items: flex-start;
|
|
463
|
+
justify-content: flex-start;
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
.citizen .citizen-home-container {
|
|
467
|
+
justify-content: flex-start;
|
|
288
468
|
}
|
|
@@ -101,6 +101,7 @@
|
|
|
101
101
|
}
|
|
102
102
|
|
|
103
103
|
.filter-form {
|
|
104
|
+
flex: 1;
|
|
104
105
|
.filter-card {
|
|
105
106
|
border-radius: 6px;
|
|
106
107
|
@apply bg-white min-h-full;
|
|
@@ -151,6 +152,7 @@
|
|
|
151
152
|
display: flex;
|
|
152
153
|
flex-direction: column;
|
|
153
154
|
gap: 16px;
|
|
155
|
+
scrollbar-width: none;
|
|
154
156
|
|
|
155
157
|
.filter {
|
|
156
158
|
.filter-card {
|