@sc-360-v2/storefront-cms-library 0.4.76 → 0.4.77

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.
@@ -2453,7 +2453,6 @@ $resizeActive: '[data-cms-element-resizer="true"]';
2453
2453
  display: none;
2454
2454
  }
2455
2455
  }
2456
-
2457
2456
  .btn__with__text[data-btn-name="signUp"] {
2458
2457
  width: 100%;
2459
2458
  &[data-show-shadow="false"] {
package/dist/menu-v2.scss CHANGED
@@ -344,6 +344,10 @@ $defaultValues: (
344
344
  border-radius: prepareMediaVariable(--_ctm-dn-sb-mu-cr-br-rs);
345
345
  padding: prepareMediaVariable(--_ctm-dn-sb-mu-cr-pg);
346
346
 
347
+ display: var(--_d-flex);
348
+ flex-direction: column;
349
+ row-gap: prepareMediaVariable(--_ctm-dn-sb-mu-cr-im-gp);
350
+
347
351
  &:is(#{$hrz} *) {
348
352
  position: absolute;
349
353
  left: calc(50% + #{prepareMediaVariable(--_ctm-dn-sb-mu-cr-cr-ot-x)});
@@ -168,6 +168,351 @@ $input-padding: 10px 12px;
168
168
  padding-inline: 24px;
169
169
  .cart_item_wrapper {
170
170
  padding-bottom: 24px;
171
+
172
+ .cart_product_responsive_wrapper {
173
+ .cart_product_top_section_wrapper {
174
+ .cart_product_info_wrapper {
175
+ display: flex;
176
+ align-items: start;
177
+ justify-content: space-between;
178
+ // flex-direction: column;
179
+ gap: 16px;
180
+ .product_details_wrapper {
181
+ display: flex;
182
+ gap: 16px;
183
+ }
184
+ .product_qty_price_wrapper {
185
+ display: flex;
186
+ justify-content: space-between;
187
+ align-items: center;
188
+ align-self: start;
189
+
190
+ .product_qty_wrapper {
191
+ display: flex;
192
+ // width: 124px;
193
+ flex-direction: column;
194
+ align-items: flex-start;
195
+ gap: 6px;
196
+ width: 113px;
197
+
198
+ .product_qty_container {
199
+ display: flex;
200
+ align-items: flex-start;
201
+ align-self: stretch;
202
+ border-radius: 4px;
203
+ border: 0.5px solid var(--_thm-cs-be-se-3);
204
+ background: #fff;
205
+ box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
206
+
207
+ .product_qty_label {
208
+ display: flex;
209
+ padding: 8px 12px;
210
+ align-items: center;
211
+ border-radius: 8px 0px 0px 8px;
212
+ height: 40px;
213
+ p {
214
+ color: var(--_thm-ty-p1-tt-cr);
215
+ font-size: var(--_thm-ty-p1-ft-se);
216
+ font-weight: var(--_thm-ty-p1-bd);
217
+ // line-height: 24px;
218
+ line-height: var(--_thm-ty-p1-le-ht);
219
+ }
220
+ }
221
+ .product_qty_input_container {
222
+ height: 40px;
223
+ display: flex;
224
+ position: relative;
225
+ width: 55px;
226
+ border-radius: 0px 4px 4px 0px;
227
+ background: #fff;
228
+ border-left: 1px solid var(--_thm-cs-be-se-3);
229
+ padding: 8px 12px;
230
+ .svg_icon {
231
+ position: absolute;
232
+ top: 8px;
233
+ right: 0px;
234
+ g {
235
+ rect {
236
+ fill: var(--_gray-500);
237
+ width: 10px;
238
+ height: 10px;
239
+ }
240
+ }
241
+ }
242
+ }
243
+ .product_qty_number {
244
+ // display: flex;
245
+ // padding: 8px 12px;
246
+ align-items: center;
247
+ color: var(--_thm-ty-p2-tt-cr);
248
+ font-size: var(--_thm-ty-p1-ft-se);
249
+ font-weight: var(--_thm-ty-p1-bd);
250
+ line-height: var(--_thm-ty-p1-le-ht);
251
+ // gap: 8px;
252
+ // flex: 1 0 0;
253
+ // align-self: stretch;
254
+ // border-radius: 0px 4px 4px 0px;
255
+ // background: #fff;
256
+ // border-left: 1px solid var(--_thm-cs-be-se-3);
257
+ // max-width: 80px;
258
+ text-align: center;
259
+ width: 75%;
260
+ &::-webkit-outer-spin-button,
261
+ &::-webkit-inner-spin-button {
262
+ -webkit-appearance: none;
263
+ margin: 0;
264
+ }
265
+ }
266
+ }
267
+ }
268
+
269
+ .product_price {
270
+ // color: var(--_gray-900);
271
+ // text-align: right;
272
+ // font-size: 20px;
273
+ // font-weight: 700;
274
+ // line-height: 30px;
275
+ // white-space: nowrap;
276
+ // min-width: 80px;
277
+ white-space: nowrap;
278
+ color: var(
279
+ --_ctm-mob-dn-pt-pe-ss-cr,
280
+ var(--_ctm-tab-dn-pt-pe-ss-cr, var(--_ctm-dn-pt-pe-ss-cr))
281
+ );
282
+ font-family: var(
283
+ --_sf-hr-ff,
284
+ var(
285
+ --_ctm-mob-dn-pt-pe-ss-ft-fy,
286
+ var(--_ctm-tab-dn-pt-pe-ss-ft-fy, var(--_ctm-dn-pt-pe-ss-ft-fy))
287
+ )
288
+ );
289
+ font-size: var(
290
+ --_ctm-mob-dn-pt-pe-ss-ft-se,
291
+ var(--_ctm-tab-dn-pt-pe-ss-ft-se, var(--_ctm-dn-pt-pe-ss-ft-se))
292
+ );
293
+ font-weight: var(
294
+ --_ctm-mob-dn-pt-pe-ss-ft-wt,
295
+ var(--_ctm-tab-dn-pt-pe-ss-ft-wt, var(--_ctm-dn-pt-pe-ss-ft-wt))
296
+ );
297
+ font-style: var(
298
+ --_ctm-mob-dn-pt-pe-ss-ft-se-ic,
299
+ var(--_ctm-tab-dn-pt-pe-ss-ft-se-ic, var(--_ctm-dn-pt-pe-ss-ft-se-ic))
300
+ );
301
+ text-align: right;
302
+ letter-spacing: var(
303
+ --_ctm-mob-dn-pt-pe-ss-lr-sg,
304
+ var(--_ctm-tab-dn-pt-pe-ss-lr-sg, var(--_ctm-dn-pt-pe-ss-lr-sg))
305
+ );
306
+ line-height: var(
307
+ --_ctm-mob-dn-pt-pe-ss-le-ht,
308
+ var(--_ctm-tab-dn-pt-pe-ss-le-ht, var(--_ctm-dn-pt-pe-ss-le-ht))
309
+ );
310
+ text-decoration: var(
311
+ --_ctm-mob-dn-pt-pe-ss-ue,
312
+ var(--_ctm-tab-dn-pt-pe-ss-ue, var(--_ctm-dn-pt-pe-ss-ue))
313
+ );
314
+ min-width: 80px;
315
+ }
316
+ }
317
+ .product_customization_container {
318
+ display: flex;
319
+ justify-content: space-between;
320
+ align-items: center;
321
+ padding-top: 16px;
322
+ border-top: 1px solid var(--_thm-cs-be-se-3);
323
+ .product_customization_left_container {
324
+ display: flex;
325
+ align-items: center;
326
+ gap: 16px;
327
+ min-height: 28px;
328
+ .wishlist_icon {
329
+ cursor: pointer;
330
+ svg {
331
+ padding: 4px;
332
+ border-radius: 4px;
333
+ width: var(
334
+ --_ctm-mob-dn-pt-an-pt-an-wt-in-se,
335
+ var(--_ctm-tab-dn-pt-an-pt-an-wt-in-se, var(--_ctm-dn-pt-an-pt-an-wt-in-se))
336
+ );
337
+ height: var(
338
+ --_ctm-mob-dn-pt-an-pt-an-wt-in-se,
339
+ var(--_ctm-tab-dn-pt-an-pt-an-wt-in-se, var(--_ctm-dn-pt-an-pt-an-wt-in-se))
340
+ );
341
+ path {
342
+ // stroke: var(
343
+ // --_ctm-mob-dn-pt-an-pt-an-wt-in-c1,
344
+ // var(--_ctm-tab-dn-pt-an-pt-an-wt-in-c1, var(--_ctm-dn-pt-an-pt-an-wt-in-c1))
345
+ // );
346
+ stroke: var(--_thm-cs-be-se-1);
347
+ }
348
+ }
349
+ &:hover {
350
+ svg {
351
+ background-color: color-mix(in srgb, var(--_thm-cs-at-py) 10%, transparent);
352
+ width: var(
353
+ --_ctm-mob-dn-pt-an-pt-an-wt-in-se,
354
+ var(--_ctm-tab-dn-pt-an-pt-an-wt-in-se, var(--_ctm-dn-pt-an-pt-an-wt-in-se))
355
+ );
356
+ height: var(
357
+ --_ctm-mob-dn-pt-an-pt-an-wt-in-se,
358
+ var(--_ctm-tab-dn-pt-an-pt-an-wt-in-se, var(--_ctm-dn-pt-an-pt-an-wt-in-se))
359
+ );
360
+ path {
361
+ // stroke: var(
362
+ // --_ctm-mob-dn-pt-an-pt-an-wt-in-c1,
363
+ // var(--_ctm-tab-dn-pt-an-pt-an-wt-in-c1, var(--_ctm-dn-pt-an-pt-an-wt-in-c1))
364
+ // );
365
+ stroke: var(--_thm-cs-at-py);
366
+ }
367
+ }
368
+ }
369
+ }
370
+ .svg_icon {
371
+ display: flex;
372
+ // svg path {
373
+ // stroke: var(--_primary-400);
374
+ // }
375
+ }
376
+
377
+ .customization_button {
378
+ display: flex;
379
+ justify-content: center;
380
+ align-items: center;
381
+ gap: 4px;
382
+ white-space: nowrap;
383
+ // color: var(
384
+ // --_ctm-mob-dn-pt-as-ss-cr,
385
+ // var(--_ctm-tab-dn-pt-as-ss-cr, var(--_ctm-dn-pt-as-ss-cr))
386
+ // );
387
+ color: var(--_thm-cs-tt-ls-as);
388
+ font-family: var(
389
+ --_sf-hr-ff,
390
+ var(
391
+ --_ctm-mob-dn-pt-as-ss-ft-fy,
392
+ var(--_ctm-tab-dn-pt-as-ss-ft-fy, var(--_ctm-dn-pt-as-ss-ft-fy))
393
+ )
394
+ );
395
+ font-size: var(
396
+ --_ctm-mob-dn-pt-as-ss-ft-se,
397
+ var(--_ctm-tab-dn-pt-as-ss-ft-se, var(--_ctm-dn-pt-as-ss-ft-se))
398
+ );
399
+ font-weight: var(
400
+ --_ctm-mob-dn-pt-as-ss-ft-wt,
401
+ var(--_ctm-tab-dn-pt-as-ss-ft-wt, var(--_ctm-dn-pt-as-ss-ft-wt))
402
+ );
403
+ font-style: var(
404
+ --_ctm-mob-dn-pt-as-ss-ft-se-ic,
405
+ var(--_ctm-tab-dn-pt-as-ss-ft-se-ic, var(--_ctm-dn-pt-as-ss-ft-se-ic))
406
+ );
407
+ text-align: var(
408
+ --_ctm-mob-dn-pt-as-ss-tt-an,
409
+ var(--_ctm-tab-dn-pt-as-ss-tt-an, var(--_ctm-dn-pt-as-ss-tt-an))
410
+ );
411
+ letter-spacing: var(
412
+ --_ctm-mob-dn-pt-as-ss-lr-sg,
413
+ var(--_ctm-tab-dn-pt-as-ss-lr-sg, var(--_ctm-dn-pt-as-ss-lr-sg))
414
+ );
415
+ line-height: var(
416
+ --_ctm-mob-dn-pt-as-ss-le-ht,
417
+ var(--_ctm-tab-dn-pt-as-ss-le-ht, var(--_ctm-dn-pt-as-ss-le-ht))
418
+ );
419
+ text-decoration: var(
420
+ --_ctm-mob-dn-pt-as-ss-ue,
421
+ var(--_ctm-tab-dn-pt-as-ss-ue, var(--_ctm-dn-pt-as-ss-ue))
422
+ );
423
+ .attr_val_info_detail {
424
+ b {
425
+ margin-right: 4px;
426
+ }
427
+ }
428
+ .svg_icon {
429
+ display: flex;
430
+ transition: all 400ms linear;
431
+ svg {
432
+ path {
433
+ // stroke: var(
434
+ // --_ctm-mob-dn-pt-as-ss-cr,
435
+ // var(--_ctm-tab-dn-pt-as-ss-cr, var(--_ctm-dn-pt-as-ss-cr))
436
+ // );
437
+ stroke: var(--_thm-cs-tt-ls-as);
438
+ }
439
+ width: 18px;
440
+ height: 18px;
441
+ // margin-top: 2px;
442
+ transition: transform 400ms linear;
443
+ }
444
+ }
445
+ }
446
+ .attributes_validation_info_sec {
447
+ display: flex;
448
+ justify-content: center;
449
+ align-items: center;
450
+ gap: 4px;
451
+ white-space: nowrap;
452
+ b {
453
+ margin-right: 4px;
454
+ }
455
+ }
456
+ .svg_icon svg {
457
+ vertical-align: middle;
458
+ }
459
+ .svg_icon.down svg {
460
+ transform: rotate(180deg);
461
+ transition: transform 400ms linear;
462
+ // width: 20px;
463
+ // height: 20px;
464
+ }
465
+ .customizationInfo_button {
466
+ display: flex;
467
+ justify-content: center;
468
+ align-items: center;
469
+ gap: 8px;
470
+ white-space: nowrap;
471
+ color: var(
472
+ --_ctm-mob-dn-pt-rd-io-cr,
473
+ var(--_ctm-tab-dn-pt-rd-io-cr, var(--_ctm-dn-pt-rd-io-cr))
474
+ );
475
+ font-family: var(
476
+ --_sf-hr-ff,
477
+ var(
478
+ --_ctm-mob-dn-pt-rd-io-ft-fy,
479
+ var(--_ctm-tab-dn-pt-rd-io-ft-fy, var(--_ctm-dn-pt-rd-io-ft-fy))
480
+ )
481
+ );
482
+ font-size: var(
483
+ --_ctm-mob-dn-pt-rd-io-ft-se,
484
+ var(--_ctm-tab-dn-pt-rd-io-ft-se, var(--_ctm-dn-pt-rd-io-ft-se))
485
+ );
486
+ font-weight: var(
487
+ --_ctm-mob-dn-pt-rd-io-ft-wt,
488
+ var(--_ctm-tab-dn-pt-rd-io-ft-wt, var(--_ctm-dn-pt-rd-io-ft-wt))
489
+ );
490
+ font-style: var(
491
+ --_ctm-mob-dn-pt-rd-io-ft-se-ic,
492
+ var(--_ctm-tab-dn-pt-rd-io-ft-se-ic, var(--_ctm-dn-pt-rd-io-ft-se-ic))
493
+ );
494
+ text-align: var(
495
+ --_ctm-mob-dn-pt-rd-io-tt-an,
496
+ var(--_ctm-tab-dn-pt-rd-io-tt-an, var(--_ctm-dn-pt-rd-io-tt-an))
497
+ );
498
+ letter-spacing: var(
499
+ --_ctm-mob-dn-pt-rd-io-lr-sg,
500
+ var(--_ctm-tab-dn-pt-rd-io-lr-sg, var(--_ctm-dn-pt-rd-io-lr-sg))
501
+ );
502
+ line-height: var(
503
+ --_ctm-mob-dn-pt-rd-io-le-ht,
504
+ var(--_ctm-tab-dn-pt-rd-io-le-ht, var(--_ctm-dn-pt-rd-io-le-ht))
505
+ );
506
+ text-decoration: var(
507
+ --_ctm-mob-dn-pt-qy-ss-ue,
508
+ var(--_ctm-tab-dn-pt-qy-ss-ue, var(--_ctm-dn-pt-qy-ss-ue))
509
+ );
510
+ }
511
+ }
512
+ }
513
+ }
514
+ }
515
+ }
171
516
  &:not(:last-child) {
172
517
  border-bottom: 0.5px solid var(--_gray-300);
173
518
  }
@@ -180,6 +525,8 @@ $input-padding: 10px 12px;
180
525
  .product_info_container {
181
526
  .product_title {
182
527
  font-weight: 600;
528
+ text-decoration: none;
529
+ color: var(--_gray-900);
183
530
  }
184
531
  .product_code,
185
532
  .product_options {
@@ -194,6 +541,7 @@ $input-padding: 10px 12px;
194
541
  .product_qty_price_wrapper {
195
542
  // gap: 12px !important;
196
543
  gap: 16px;
544
+ margin-left: auto;
197
545
  .product_qty_wrapper {
198
546
  width: 120px;
199
547
  }
@@ -209,6 +557,254 @@ $input-padding: 10px 12px;
209
557
  }
210
558
  }
211
559
 
560
+ .product_actions_wrapper {
561
+ padding-block: 12px;
562
+ display: flex;
563
+ justify-content: center;
564
+ align-items: center;
565
+ gap: 16px;
566
+ min-width: 100px;
567
+ & > a,
568
+ span {
569
+ cursor: pointer;
570
+ display: flex;
571
+ align-items: center;
572
+ border-radius: 4px;
573
+ }
574
+ & > * {
575
+ display: flex;
576
+ align-items: center;
577
+ justify-content: center;
578
+ }
579
+ button {
580
+ display: flex;
581
+ }
582
+ & > a,
583
+ & > span {
584
+ border-radius: 4px;
585
+ padding: 4px;
586
+ }
587
+ .edit_icon {
588
+ cursor: pointer;
589
+ svg {
590
+ width: var(
591
+ --_ctm-mob-dn-pt-an-pt-an-et-dt-se-in-se,
592
+ var(--_ctm-tab-dn-pt-an-pt-an-et-dt-se-in-se, var(--_ctm-dn-pt-an-pt-an-et-dt-se-in-se))
593
+ );
594
+ height: var(
595
+ --_ctm-mob-dn-pt-an-pt-an-et-dt-se-in-se,
596
+ var(--_ctm-tab-dn-pt-an-pt-an-et-dt-se-in-se, var(--_ctm-dn-pt-an-pt-an-et-dt-se-in-se))
597
+ );
598
+ path {
599
+ stroke: var(--_thm-cs-be-se-1);
600
+ }
601
+ }
602
+ &:hover {
603
+ svg {
604
+ width: var(
605
+ --_ctm-mob-dn-pt-an-pt-an-et-dt-se-in-se,
606
+ var(
607
+ --_ctm-tab-dn-pt-an-pt-an-et-dt-se-in-se,
608
+ var(--_ctm-dn-pt-an-pt-an-et-dt-se-in-se)
609
+ )
610
+ );
611
+ height: var(
612
+ --_ctm-mob-dn-pt-an-pt-an-et-dt-se-in-se,
613
+ var(
614
+ --_ctm-tab-dn-pt-an-pt-an-et-dt-se-in-se,
615
+ var(--_ctm-dn-pt-an-pt-an-et-dt-se-in-se)
616
+ )
617
+ );
618
+ path {
619
+ stroke: var(--_thm-cs-at-py);
620
+ }
621
+ }
622
+ }
623
+ }
624
+ .wishlist_icon {
625
+ cursor: pointer;
626
+ svg {
627
+ width: var(
628
+ --_ctm-mob-dn-pt-an-pt-an-wt-in-se,
629
+ var(--_ctm-tab-dn-pt-an-pt-an-wt-in-se, var(--_ctm-dn-pt-an-pt-an-wt-in-se))
630
+ );
631
+ height: var(
632
+ --_ctm-mob-dn-pt-an-pt-an-wt-in-se,
633
+ var(--_ctm-tab-dn-pt-an-pt-an-wt-in-se, var(--_ctm-dn-pt-an-pt-an-wt-in-se))
634
+ );
635
+ path {
636
+ stroke: var(--_thm-cs-be-se-1);
637
+ }
638
+ }
639
+ &:hover {
640
+ svg {
641
+ width: var(
642
+ --_ctm-mob-dn-pt-an-pt-an-wt-in-se,
643
+ var(--_ctm-tab-dn-pt-an-pt-an-wt-in-se, var(--_ctm-dn-pt-an-pt-an-wt-in-se))
644
+ );
645
+ height: var(
646
+ --_ctm-mob-dn-pt-an-pt-an-wt-in-se,
647
+ var(--_ctm-tab-dn-pt-an-pt-an-wt-in-se, var(--_ctm-dn-pt-an-pt-an-wt-in-se))
648
+ );
649
+ path {
650
+ stroke: var(--_thm-cs-at-py);
651
+ }
652
+ }
653
+ }
654
+ }
655
+
656
+ .delete_cart_icon {
657
+ cursor: pointer;
658
+
659
+ svg {
660
+ width: var(
661
+ --_ctm-mob-dn-pt-an-pt-an-de-in-se,
662
+ var(--_ctm-tab-dn-pt-an-pt-an-de-in-se, var(--_ctm-dn-pt-an-pt-an-de-in-se))
663
+ );
664
+ height: var(
665
+ --_ctm-mob-dn-pt-an-pt-an-de-in-se,
666
+ var(--_ctm-tab-dn-pt-an-pt-an-de-in-se, var(--_ctm-dn-pt-an-pt-an-de-in-se))
667
+ );
668
+ path {
669
+ stroke: var(
670
+ --_ctm-mob-dn-pt-an-pt-an-de-in-c1,
671
+ var(--_ctm-tab-dn-pt-an-pt-an-de-in-c1, var(--_ctm-dn-pt-an-pt-an-de-in-c1))
672
+ );
673
+ }
674
+ }
675
+ &:hover {
676
+ background-color: var(--_error-50);
677
+ svg {
678
+ width: var(
679
+ --_ctm-mob-dn-pt-an-pt-an-de-in-se,
680
+ var(--_ctm-tab-dn-pt-an-pt-an-de-in-se, var(--_ctm-dn-pt-an-pt-an-de-in-se))
681
+ );
682
+ height: var(
683
+ --_ctm-mob-dn-pt-an-pt-an-de-in-se,
684
+ var(--_ctm-tab-dn-pt-an-pt-an-de-in-se, var(--_ctm-dn-pt-an-pt-an-de-in-se))
685
+ );
686
+ path {
687
+ stroke: var(
688
+ --_ctm-mob-dn-pt-an-pt-an-de-in-c1,
689
+ var(--_ctm-tab-dn-pt-an-pt-an-de-in-c1, var(--_ctm-dn-pt-an-pt-an-de-in-c1))
690
+ );
691
+ }
692
+ }
693
+ }
694
+ }
695
+ .svg_icon {
696
+ display: flex;
697
+ justify-content: center;
698
+ align-items: center;
699
+ }
700
+ .product_action_button {
701
+ display: flex;
702
+ justify-content: center;
703
+ align-items: center;
704
+ gap: 8px;
705
+ }
706
+ a {
707
+ width: 33%;
708
+ display: flex;
709
+ justify-content: center;
710
+ border-radius: 4px;
711
+ padding: 4px !important;
712
+ &:hover {
713
+ background-color: color-mix(in srgb, var(--_thm-cs-at-py) 10%, transparent);
714
+ svg {
715
+ path {
716
+ stroke: var(--_thm-cs-at-py);
717
+ }
718
+ }
719
+ }
720
+ }
721
+ button {
722
+ display: flex;
723
+ justify-content: center;
724
+ border-radius: 4px;
725
+ padding: 4px !important;
726
+ }
727
+ span:has(.cart-dropdown-container) {
728
+ width: 100%;
729
+ display: flex;
730
+ justify-content: center;
731
+ border-radius: 4px;
732
+ button {
733
+ width: 100%;
734
+ padding: 0 !important;
735
+ span {
736
+ display: flex;
737
+ align-items: center;
738
+ border-radius: 4px;
739
+ }
740
+ }
741
+ &:hover {
742
+ background-color: color-mix(in srgb, var(--_thm-cs-at-py) 10%, transparent);
743
+ span {
744
+ svg {
745
+ path {
746
+ stroke: var(--_thm-cs-at-py);
747
+ }
748
+ }
749
+ }
750
+ }
751
+ }
752
+ .line_divider {
753
+ height: 12px;
754
+ background: var(--_thm-cs-be-se-3);
755
+ width: 1px;
756
+ }
757
+ .primary_link {
758
+ display: flex;
759
+ justify-content: center;
760
+ align-items: center;
761
+ color: var(
762
+ --_sf-ft-clr,
763
+ var(
764
+ --_ctm-mob-ty-bs-dt-se-tt-cr,
765
+ var(--_ctm-tab-ty-bs-dt-se-tt-cr, var(--_thm-ty-bs-dt-se-tt-cr, inherit))
766
+ )
767
+ ) !important;
768
+ span {
769
+ svg {
770
+ path {
771
+ stroke: var(
772
+ --_sf-ft-clr,
773
+ var(
774
+ --_ctm-mob-ty-bs-dt-se-tt-cr,
775
+ var(--_ctm-tab-ty-bs-dt-se-tt-cr, var(--_thm-ty-bs-dt-se-tt-cr, inherit))
776
+ )
777
+ );
778
+ }
779
+ }
780
+ }
781
+ }
782
+ .destructive {
783
+ color: var(--_gray-900);
784
+ display: flex;
785
+ align-items: center;
786
+ justify-content: center;
787
+ span {
788
+ svg {
789
+ path {
790
+ stroke: var(--_gray-600);
791
+ }
792
+ }
793
+ }
794
+ &:hover {
795
+ color: var(--_error-500);
796
+ background-color: var(--_error-50);
797
+ span {
798
+ svg {
799
+ path {
800
+ stroke: var(--_error-500);
801
+ }
802
+ }
803
+ }
804
+ }
805
+ }
806
+ }
807
+
212
808
  .emptyData {
213
809
  color: $text-color;
214
810
  font-size: 16px;