@omniumretail/component-library 1.2.65 → 1.2.67

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.
@@ -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: 180px;
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, 0, 0, 0.12);
181
+ box-shadow: 0 6px 16px rgba(0, 51, 160, 0.25);
182
+ background-color: #f8fafc;
182
183
  }
183
- }
184
184
 
185
- @keyframes popIn {
186
- from {
187
- opacity: 0;
188
- transform: scale(0.8) translateY(10px);
185
+ &:active {
186
+ transform: translateY(0);
189
187
  }
190
188
 
191
- to {
192
- opacity: 1;
193
- transform: scale(1) translateY(0);
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,83 @@
204
205
  justify-content: center;
205
206
  margin-right: 10px;
206
207
  color: #4b5563;
208
+
209
+ .circleMenuItem:hover & {
210
+ transform: scale(1.1);
211
+ }
207
212
  }
208
213
 
209
214
  .circleMenuLabel {
210
215
  font-size: 14px;
211
216
  font-weight: 500;
212
217
  color: #374151;
213
- }
218
+
219
+ .circleMenuItem:hover & {
220
+ color: #1f2937;
221
+ }
222
+ }
223
+
224
+ .backButton {
225
+ display: flex;
226
+ align-items: center;
227
+ background: linear-gradient(135deg, #0033a0 0%, #0052cc 100%);
228
+ color: white;
229
+ padding: 0px 2px;
230
+ border-radius: 25px;
231
+ cursor: pointer;
232
+ transition: all 0.2s ease;
233
+ animation: slideDown 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
234
+ box-shadow: 0 4px 12px rgba(0, 51, 160, 0.3);
235
+ width: 20px;
236
+ justify-content: center;
237
+ margin-bottom: 8px;
238
+
239
+ &:hover {
240
+ transform: translateY(-2px);
241
+ box-shadow: 0 6px 16px rgba(0, 51, 160, 0.4);
242
+ }
243
+
244
+ .backIcon {
245
+ width: 30px;
246
+ height: 30px;
247
+ display: flex;
248
+ align-items: center;
249
+ justify-content: center;
250
+ font-size: 32px;
251
+ }
252
+ }
253
+
254
+ .submenuIndicator {
255
+ color: #9ca3af;
256
+ font-size: 12px;
257
+ margin-left: 4px;
258
+
259
+ .circleMenuItem:hover & {
260
+ color: #0033a0;
261
+ transform: translateX(2px);
262
+ }
263
+ }
264
+
265
+ @keyframes popIn {
266
+ from {
267
+ opacity: 0;
268
+ transform: scale(0.8) translateY(10px);
269
+ }
270
+
271
+ to {
272
+ opacity: 1;
273
+ transform: scale(1) translateY(0);
274
+ }
275
+ }
276
+
277
+ @keyframes slideDown {
278
+ from {
279
+ opacity: 0;
280
+ transform: translateY(-10px);
281
+ }
282
+
283
+ to {
284
+ opacity: 1;
285
+ transform: translateY(0);
286
+ }
287
+ }