@omniumretail/component-library 1.2.65 → 1.2.66
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/README.md +1 -1
- package/dist/bundle.js +1 -1
- package/dist/main.css +1 -1
- package/dist/types/components/Footer2/Footer.stories.d.ts +1 -0
- package/dist/types/components/Footer2/index.d.ts +10 -1
- package/package.json +1 -1
- package/src/components/Footer2/Footer.stories.tsx +118 -148
- package/src/components/Footer2/index.tsx +81 -9
- package/src/components/Footer2/styles.module.scss +88 -12
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
background-color: #e5e7eb;
|
|
23
23
|
width: 100%;
|
|
24
24
|
}
|
|
25
|
-
|
|
25
|
+
|
|
26
26
|
@media (min-width: 767px) {
|
|
27
27
|
background-color: var(--color-black) !important;
|
|
28
28
|
padding-bottom: 0px;
|
|
@@ -151,7 +151,7 @@
|
|
|
151
151
|
.circularMenu {
|
|
152
152
|
position: absolute;
|
|
153
153
|
bottom: 70px;
|
|
154
|
-
width:
|
|
154
|
+
width: 250px;
|
|
155
155
|
left: 50%;
|
|
156
156
|
transform: translateX(-52%);
|
|
157
157
|
display: flex;
|
|
@@ -178,19 +178,20 @@
|
|
|
178
178
|
|
|
179
179
|
&:hover {
|
|
180
180
|
transform: translateY(-2px);
|
|
181
|
-
box-shadow: 0 6px 16px rgba(0,
|
|
181
|
+
box-shadow: 0 6px 16px rgba(0, 51, 160, 0.25);
|
|
182
|
+
background-color: #f8fafc;
|
|
182
183
|
}
|
|
183
|
-
}
|
|
184
184
|
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
opacity: 0;
|
|
188
|
-
transform: scale(0.8) translateY(10px);
|
|
185
|
+
&:active {
|
|
186
|
+
transform: translateY(0);
|
|
189
187
|
}
|
|
190
188
|
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
189
|
+
&.disabled {
|
|
190
|
+
&:hover {
|
|
191
|
+
transform: none;
|
|
192
|
+
box-shadow: 0 4px 12px rgba(0, 51, 160, 0.15);
|
|
193
|
+
background-color: white;
|
|
194
|
+
}
|
|
194
195
|
}
|
|
195
196
|
}
|
|
196
197
|
|
|
@@ -204,10 +205,85 @@
|
|
|
204
205
|
justify-content: center;
|
|
205
206
|
margin-right: 10px;
|
|
206
207
|
color: #4b5563;
|
|
208
|
+
|
|
209
|
+
.circleMenuItem:hover & {
|
|
210
|
+
background: linear-gradient(135deg, #0033a0 0%, #0052cc 100%);
|
|
211
|
+
color: white;
|
|
212
|
+
transform: scale(1.1);
|
|
213
|
+
}
|
|
207
214
|
}
|
|
208
215
|
|
|
209
216
|
.circleMenuLabel {
|
|
210
217
|
font-size: 14px;
|
|
211
218
|
font-weight: 500;
|
|
212
219
|
color: #374151;
|
|
213
|
-
|
|
220
|
+
|
|
221
|
+
.circleMenuItem:hover & {
|
|
222
|
+
color: #1f2937;
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
.backButton {
|
|
227
|
+
display: flex;
|
|
228
|
+
align-items: center;
|
|
229
|
+
background: linear-gradient(135deg, #0033a0 0%, #0052cc 100%);
|
|
230
|
+
color: white;
|
|
231
|
+
padding: 0px 2px;
|
|
232
|
+
border-radius: 25px;
|
|
233
|
+
cursor: pointer;
|
|
234
|
+
transition: all 0.2s ease;
|
|
235
|
+
animation: slideDown 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
|
|
236
|
+
box-shadow: 0 4px 12px rgba(0, 51, 160, 0.3);
|
|
237
|
+
width: 20px;
|
|
238
|
+
justify-content: center;
|
|
239
|
+
margin-bottom: 8px;
|
|
240
|
+
|
|
241
|
+
&:hover {
|
|
242
|
+
transform: translateY(-2px);
|
|
243
|
+
box-shadow: 0 6px 16px rgba(0, 51, 160, 0.4);
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
.backIcon {
|
|
247
|
+
width: 30px;
|
|
248
|
+
height: 30px;
|
|
249
|
+
display: flex;
|
|
250
|
+
align-items: center;
|
|
251
|
+
justify-content: center;
|
|
252
|
+
font-size: 32px;
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
.submenuIndicator {
|
|
257
|
+
color: #9ca3af;
|
|
258
|
+
font-size: 12px;
|
|
259
|
+
margin-left: 4px;
|
|
260
|
+
|
|
261
|
+
.circleMenuItem:hover & {
|
|
262
|
+
color: #0033a0;
|
|
263
|
+
transform: translateX(2px);
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
@keyframes popIn {
|
|
268
|
+
from {
|
|
269
|
+
opacity: 0;
|
|
270
|
+
transform: scale(0.8) translateY(10px);
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
to {
|
|
274
|
+
opacity: 1;
|
|
275
|
+
transform: scale(1) translateY(0);
|
|
276
|
+
}
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
@keyframes slideDown {
|
|
280
|
+
from {
|
|
281
|
+
opacity: 0;
|
|
282
|
+
transform: translateY(-10px);
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
to {
|
|
286
|
+
opacity: 1;
|
|
287
|
+
transform: translateY(0);
|
|
288
|
+
}
|
|
289
|
+
}
|