@transfermarkt/global-styles 1.22.0 → 1.24.0
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/package.json
CHANGED
|
@@ -8,6 +8,9 @@
|
|
|
8
8
|
.tm-btn {
|
|
9
9
|
$font-size-small: rem-calc(12);
|
|
10
10
|
$font-size-medium: rem-calc(14);
|
|
11
|
+
$font-size-large: rem-calc(16);
|
|
12
|
+
$border-radius: rem-calc(8);
|
|
13
|
+
$gap: rem-calc(8);
|
|
11
14
|
$position: 'right';
|
|
12
15
|
|
|
13
16
|
align-items: center;
|
|
@@ -25,6 +28,10 @@
|
|
|
25
28
|
padding: rem-calc(8) rem-calc(20);
|
|
26
29
|
position: relative;
|
|
27
30
|
text-decoration: none;
|
|
31
|
+
transition:
|
|
32
|
+
background-color 100ms linear,
|
|
33
|
+
color 100ms linear,
|
|
34
|
+
border-color 100ms linear;
|
|
28
35
|
|
|
29
36
|
&--full-size {
|
|
30
37
|
display: flex;
|
|
@@ -56,21 +63,53 @@
|
|
|
56
63
|
background-color: tm-color('light-blue-new');
|
|
57
64
|
|
|
58
65
|
&--large {
|
|
66
|
+
border-radius: $border-radius;
|
|
67
|
+
font-size: ($font-size-large + rem-calc(2));
|
|
68
|
+
gap: $gap;
|
|
59
69
|
height: rem-calc(40);
|
|
70
|
+
letter-spacing: rem-calc(1);
|
|
71
|
+
line-height: rem-calc(28);
|
|
72
|
+
padding: rem-calc(8) rem-calc(16);
|
|
60
73
|
text-transform: uppercase;
|
|
74
|
+
|
|
75
|
+
@include breakpoint(desktop) {
|
|
76
|
+
font-size: $font-size-large;
|
|
77
|
+
line-height: rem-calc(24);
|
|
78
|
+
min-height: rem-calc(48);
|
|
79
|
+
min-width: rem-calc(36);
|
|
80
|
+
}
|
|
61
81
|
}
|
|
62
82
|
|
|
63
83
|
&--medium {
|
|
64
|
-
|
|
84
|
+
border-radius: $border-radius;
|
|
85
|
+
font-size: ($font-size-medium + rem-calc(2));
|
|
86
|
+
gap: $gap;
|
|
65
87
|
height: rem-calc(36);
|
|
66
|
-
line-height: rem-calc(
|
|
88
|
+
line-height: rem-calc(24);
|
|
67
89
|
padding: rem-calc(8) rem-calc(16);
|
|
90
|
+
|
|
91
|
+
@include breakpoint(desktop) {
|
|
92
|
+
font-size: $font-size-medium;
|
|
93
|
+
line-height: rem-calc(22);
|
|
94
|
+
min-height: rem-calc(40);
|
|
95
|
+
min-width: rem-calc(36);
|
|
96
|
+
}
|
|
68
97
|
}
|
|
69
98
|
|
|
70
99
|
&--small {
|
|
71
|
-
|
|
100
|
+
border-radius: $border-radius;
|
|
101
|
+
font-size: ($font-size-small + rem-calc(2));
|
|
102
|
+
gap: $gap;
|
|
72
103
|
height: rem-calc(30);
|
|
104
|
+
line-height: rem-calc(18);
|
|
73
105
|
padding: rem-calc(8) rem-calc(12);
|
|
106
|
+
|
|
107
|
+
@include breakpoint(desktop) {
|
|
108
|
+
font-size: $font-size-small;
|
|
109
|
+
line-height: rem-calc(22);
|
|
110
|
+
min-height: rem-calc(32);
|
|
111
|
+
min-width: rem-calc(36);
|
|
112
|
+
}
|
|
74
113
|
}
|
|
75
114
|
|
|
76
115
|
&:hover {
|
|
@@ -309,14 +348,20 @@
|
|
|
309
348
|
|
|
310
349
|
&--large {
|
|
311
350
|
@include tm-icon-size(16px);
|
|
351
|
+
|
|
352
|
+
stroke-width: 1.8;
|
|
312
353
|
}
|
|
313
354
|
|
|
314
355
|
&--medium {
|
|
315
356
|
@include tm-icon-size(16px);
|
|
357
|
+
|
|
358
|
+
stroke-width: 1.5;
|
|
316
359
|
}
|
|
317
360
|
|
|
318
361
|
&--small {
|
|
319
362
|
@include tm-icon-size(14px);
|
|
363
|
+
|
|
364
|
+
stroke-width: 1.2;
|
|
320
365
|
}
|
|
321
366
|
|
|
322
367
|
&::before {
|
|
@@ -336,14 +381,20 @@
|
|
|
336
381
|
|
|
337
382
|
&--large {
|
|
338
383
|
@include tm-icon-size(16px);
|
|
384
|
+
|
|
385
|
+
stroke-width: 1.8;
|
|
339
386
|
}
|
|
340
387
|
|
|
341
388
|
&--medium {
|
|
342
389
|
@include tm-icon-size(16px);
|
|
390
|
+
|
|
391
|
+
stroke-width: 1.5;
|
|
343
392
|
}
|
|
344
393
|
|
|
345
394
|
&--small {
|
|
346
395
|
@include tm-icon-size(14px);
|
|
396
|
+
|
|
397
|
+
stroke-width: 1.2;
|
|
347
398
|
}
|
|
348
399
|
|
|
349
400
|
&:hover {
|
|
@@ -357,14 +408,20 @@
|
|
|
357
408
|
|
|
358
409
|
&--large {
|
|
359
410
|
@include tm-icon-size(16px);
|
|
411
|
+
|
|
412
|
+
stroke-width: 1.8;
|
|
360
413
|
}
|
|
361
414
|
|
|
362
415
|
&--medium {
|
|
363
416
|
@include tm-icon-size(16px);
|
|
417
|
+
|
|
418
|
+
stroke-width: 1.5;
|
|
364
419
|
}
|
|
365
420
|
|
|
366
421
|
&--small {
|
|
367
422
|
@include tm-icon-size(14px);
|
|
423
|
+
|
|
424
|
+
stroke-width: 1.2;
|
|
368
425
|
}
|
|
369
426
|
|
|
370
427
|
&::before {
|
|
@@ -383,14 +440,20 @@
|
|
|
383
440
|
|
|
384
441
|
&--large {
|
|
385
442
|
@include tm-icon-size(16px);
|
|
443
|
+
|
|
444
|
+
stroke-width: 1.8;
|
|
386
445
|
}
|
|
387
446
|
|
|
388
447
|
&--medium {
|
|
389
448
|
@include tm-icon-size(16px);
|
|
449
|
+
|
|
450
|
+
stroke-width: 1.5;
|
|
390
451
|
}
|
|
391
452
|
|
|
392
453
|
&--small {
|
|
393
454
|
@include tm-icon-size(14px);
|
|
455
|
+
|
|
456
|
+
stroke-width: 1.2;
|
|
394
457
|
}
|
|
395
458
|
|
|
396
459
|
&::before {
|
|
@@ -405,14 +468,20 @@
|
|
|
405
468
|
|
|
406
469
|
&--large {
|
|
407
470
|
@include tm-icon-size(16px);
|
|
471
|
+
|
|
472
|
+
stroke-width: 1.8;
|
|
408
473
|
}
|
|
409
474
|
|
|
410
475
|
&--medium {
|
|
411
476
|
@include tm-icon-size(16px);
|
|
477
|
+
|
|
478
|
+
stroke-width: 1.5;
|
|
412
479
|
}
|
|
413
480
|
|
|
414
481
|
&--small {
|
|
415
482
|
@include tm-icon-size(14px);
|
|
483
|
+
|
|
484
|
+
stroke-width: 1.2;
|
|
416
485
|
}
|
|
417
486
|
}
|
|
418
487
|
|
|
@@ -421,14 +490,20 @@
|
|
|
421
490
|
|
|
422
491
|
&--large {
|
|
423
492
|
@include tm-icon-size(16px);
|
|
493
|
+
|
|
494
|
+
stroke-width: 1.8;
|
|
424
495
|
}
|
|
425
496
|
|
|
426
497
|
&--medium {
|
|
427
498
|
@include tm-icon-size(16px);
|
|
499
|
+
|
|
500
|
+
stroke-width: 1.5;
|
|
428
501
|
}
|
|
429
502
|
|
|
430
503
|
&--small {
|
|
431
504
|
@include tm-icon-size(14px);
|
|
505
|
+
|
|
506
|
+
stroke-width: 1.2;
|
|
432
507
|
}
|
|
433
508
|
|
|
434
509
|
&::before {
|
|
@@ -443,14 +518,20 @@
|
|
|
443
518
|
|
|
444
519
|
&--large {
|
|
445
520
|
@include tm-icon-size(16px);
|
|
521
|
+
|
|
522
|
+
stroke-width: 1.8;
|
|
446
523
|
}
|
|
447
524
|
|
|
448
525
|
&--medium {
|
|
449
526
|
@include tm-icon-size(16px);
|
|
527
|
+
|
|
528
|
+
stroke-width: 1.5;
|
|
450
529
|
}
|
|
451
530
|
|
|
452
531
|
&--small {
|
|
453
532
|
@include tm-icon-size(14px);
|
|
533
|
+
|
|
534
|
+
stroke-width: 1.2;
|
|
454
535
|
}
|
|
455
536
|
}
|
|
456
537
|
|
|
@@ -461,14 +542,20 @@
|
|
|
461
542
|
|
|
462
543
|
&--large {
|
|
463
544
|
@include tm-icon-size(16px);
|
|
545
|
+
|
|
546
|
+
stroke-width: 1.8;
|
|
464
547
|
}
|
|
465
548
|
|
|
466
549
|
&--medium {
|
|
467
550
|
@include tm-icon-size(16px);
|
|
551
|
+
|
|
552
|
+
stroke-width: 1.5;
|
|
468
553
|
}
|
|
469
554
|
|
|
470
555
|
&--small {
|
|
471
556
|
@include tm-icon-size(14px);
|
|
557
|
+
|
|
558
|
+
stroke-width: 1.2;
|
|
472
559
|
}
|
|
473
560
|
}
|
|
474
561
|
|
|
@@ -477,14 +564,20 @@
|
|
|
477
564
|
|
|
478
565
|
&--large {
|
|
479
566
|
@include tm-icon-size(16px);
|
|
567
|
+
|
|
568
|
+
stroke-width: 1.8;
|
|
480
569
|
}
|
|
481
570
|
|
|
482
571
|
&--medium {
|
|
483
572
|
@include tm-icon-size(16px);
|
|
573
|
+
|
|
574
|
+
stroke-width: 1.5;
|
|
484
575
|
}
|
|
485
576
|
|
|
486
577
|
&--small {
|
|
487
578
|
@include tm-icon-size(14px);
|
|
579
|
+
|
|
580
|
+
stroke-width: 1.2;
|
|
488
581
|
}
|
|
489
582
|
}
|
|
490
583
|
|
|
@@ -495,14 +588,20 @@
|
|
|
495
588
|
|
|
496
589
|
&--large {
|
|
497
590
|
@include tm-icon-size(16px);
|
|
591
|
+
|
|
592
|
+
stroke-width: 1.8;
|
|
498
593
|
}
|
|
499
594
|
|
|
500
595
|
&--medium {
|
|
501
596
|
@include tm-icon-size(16px);
|
|
597
|
+
|
|
598
|
+
stroke-width: 1.5;
|
|
502
599
|
}
|
|
503
600
|
|
|
504
601
|
&--small {
|
|
505
602
|
@include tm-icon-size(14px);
|
|
603
|
+
|
|
604
|
+
stroke-width: 1.2;
|
|
506
605
|
}
|
|
507
606
|
}
|
|
508
607
|
|
|
@@ -513,14 +612,20 @@
|
|
|
513
612
|
|
|
514
613
|
&--large {
|
|
515
614
|
@include tm-icon-size(16px);
|
|
615
|
+
|
|
616
|
+
stroke-width: 1.8;
|
|
516
617
|
}
|
|
517
618
|
|
|
518
619
|
&--medium {
|
|
519
620
|
@include tm-icon-size(16px);
|
|
621
|
+
|
|
622
|
+
stroke-width: 1.5;
|
|
520
623
|
}
|
|
521
624
|
|
|
522
625
|
&--small {
|
|
523
626
|
@include tm-icon-size(14px);
|
|
627
|
+
|
|
628
|
+
stroke-width: 1.2;
|
|
524
629
|
}
|
|
525
630
|
}
|
|
526
631
|
|
|
@@ -529,14 +634,20 @@
|
|
|
529
634
|
|
|
530
635
|
&--large {
|
|
531
636
|
@include tm-icon-size(16px);
|
|
637
|
+
|
|
638
|
+
stroke-width: 1.8;
|
|
532
639
|
}
|
|
533
640
|
|
|
534
641
|
&--medium {
|
|
535
642
|
@include tm-icon-size(16px);
|
|
643
|
+
|
|
644
|
+
stroke-width: 1.5;
|
|
536
645
|
}
|
|
537
646
|
|
|
538
647
|
&--small {
|
|
539
648
|
@include tm-icon-size(14px);
|
|
649
|
+
|
|
650
|
+
stroke-width: 1.2;
|
|
540
651
|
}
|
|
541
652
|
}
|
|
542
653
|
|
|
@@ -547,14 +658,20 @@
|
|
|
547
658
|
|
|
548
659
|
&--large {
|
|
549
660
|
@include tm-icon-size(16px);
|
|
661
|
+
|
|
662
|
+
stroke-width: 1.8;
|
|
550
663
|
}
|
|
551
664
|
|
|
552
665
|
&--medium {
|
|
553
666
|
@include tm-icon-size(16px);
|
|
667
|
+
|
|
668
|
+
stroke-width: 1.5;
|
|
554
669
|
}
|
|
555
670
|
|
|
556
671
|
&--small {
|
|
557
672
|
@include tm-icon-size(14px);
|
|
673
|
+
|
|
674
|
+
stroke-width: 1.2;
|
|
558
675
|
}
|
|
559
676
|
}
|
|
560
677
|
|
|
@@ -565,14 +682,20 @@
|
|
|
565
682
|
|
|
566
683
|
&--large {
|
|
567
684
|
@include tm-icon-size(16px);
|
|
685
|
+
|
|
686
|
+
stroke-width: 1.8;
|
|
568
687
|
}
|
|
569
688
|
|
|
570
689
|
&--medium {
|
|
571
690
|
@include tm-icon-size(16px);
|
|
691
|
+
|
|
692
|
+
stroke-width: 1.5;
|
|
572
693
|
}
|
|
573
694
|
|
|
574
695
|
&--small {
|
|
575
696
|
@include tm-icon-size(14px);
|
|
697
|
+
|
|
698
|
+
stroke-width: 1.2;
|
|
576
699
|
}
|
|
577
700
|
}
|
|
578
701
|
|
|
@@ -581,14 +704,20 @@
|
|
|
581
704
|
|
|
582
705
|
&--large {
|
|
583
706
|
@include tm-icon-size(16px);
|
|
707
|
+
|
|
708
|
+
stroke-width: 1.8;
|
|
584
709
|
}
|
|
585
710
|
|
|
586
711
|
&--medium {
|
|
587
712
|
@include tm-icon-size(16px);
|
|
713
|
+
|
|
714
|
+
stroke-width: 1.5;
|
|
588
715
|
}
|
|
589
716
|
|
|
590
717
|
&--small {
|
|
591
718
|
@include tm-icon-size(14px);
|
|
719
|
+
|
|
720
|
+
stroke-width: 1.2;
|
|
592
721
|
}
|
|
593
722
|
}
|
|
594
723
|
|
|
@@ -599,14 +728,20 @@
|
|
|
599
728
|
|
|
600
729
|
&--large {
|
|
601
730
|
@include tm-icon-size(16px);
|
|
731
|
+
|
|
732
|
+
stroke-width: 1.8;
|
|
602
733
|
}
|
|
603
734
|
|
|
604
735
|
&--medium {
|
|
605
736
|
@include tm-icon-size(16px);
|
|
737
|
+
|
|
738
|
+
stroke-width: 1.5;
|
|
606
739
|
}
|
|
607
740
|
|
|
608
741
|
&--small {
|
|
609
742
|
@include tm-icon-size(14px);
|
|
743
|
+
|
|
744
|
+
stroke-width: 1.2;
|
|
610
745
|
}
|
|
611
746
|
}
|
|
612
747
|
|
|
@@ -617,14 +752,20 @@
|
|
|
617
752
|
|
|
618
753
|
&--large {
|
|
619
754
|
@include tm-icon-size(16px);
|
|
755
|
+
|
|
756
|
+
stroke-width: 1.8;
|
|
620
757
|
}
|
|
621
758
|
|
|
622
759
|
&--medium {
|
|
623
760
|
@include tm-icon-size(16px);
|
|
761
|
+
|
|
762
|
+
stroke-width: 1.5;
|
|
624
763
|
}
|
|
625
764
|
|
|
626
765
|
&--small {
|
|
627
766
|
@include tm-icon-size(14px);
|
|
767
|
+
|
|
768
|
+
stroke-width: 1.2;
|
|
628
769
|
}
|
|
629
770
|
}
|
|
630
771
|
|
|
@@ -633,14 +774,20 @@
|
|
|
633
774
|
|
|
634
775
|
&--large {
|
|
635
776
|
@include tm-icon-size(16px);
|
|
777
|
+
|
|
778
|
+
stroke-width: 1.8;
|
|
636
779
|
}
|
|
637
780
|
|
|
638
781
|
&--medium {
|
|
639
782
|
@include tm-icon-size(16px);
|
|
783
|
+
|
|
784
|
+
stroke-width: 1.5;
|
|
640
785
|
}
|
|
641
786
|
|
|
642
787
|
&--small {
|
|
643
788
|
@include tm-icon-size(14px);
|
|
789
|
+
|
|
790
|
+
stroke-width: 1.2;
|
|
644
791
|
}
|
|
645
792
|
}
|
|
646
793
|
|
|
@@ -651,14 +798,20 @@
|
|
|
651
798
|
|
|
652
799
|
&--large {
|
|
653
800
|
@include tm-icon-size(16px);
|
|
801
|
+
|
|
802
|
+
stroke-width: 1.8;
|
|
654
803
|
}
|
|
655
804
|
|
|
656
805
|
&--medium {
|
|
657
806
|
@include tm-icon-size(16px);
|
|
807
|
+
|
|
808
|
+
stroke-width: 1.5;
|
|
658
809
|
}
|
|
659
810
|
|
|
660
811
|
&--small {
|
|
661
812
|
@include tm-icon-size(14px);
|
|
813
|
+
|
|
814
|
+
stroke-width: 1.2;
|
|
662
815
|
}
|
|
663
816
|
}
|
|
664
817
|
|
|
@@ -669,14 +822,20 @@
|
|
|
669
822
|
|
|
670
823
|
&--large {
|
|
671
824
|
@include tm-icon-size(16px);
|
|
825
|
+
|
|
826
|
+
stroke-width: 1.8;
|
|
672
827
|
}
|
|
673
828
|
|
|
674
829
|
&--medium {
|
|
675
830
|
@include tm-icon-size(16px);
|
|
831
|
+
|
|
832
|
+
stroke-width: 1.5;
|
|
676
833
|
}
|
|
677
834
|
|
|
678
835
|
&--small {
|
|
679
836
|
@include tm-icon-size(14px);
|
|
837
|
+
|
|
838
|
+
stroke-width: 1.2;
|
|
680
839
|
}
|
|
681
840
|
}
|
|
682
841
|
|
|
@@ -685,14 +844,20 @@
|
|
|
685
844
|
|
|
686
845
|
&--large {
|
|
687
846
|
@include tm-icon-size(16px);
|
|
847
|
+
|
|
848
|
+
stroke-width: 1.8;
|
|
688
849
|
}
|
|
689
850
|
|
|
690
851
|
&--medium {
|
|
691
852
|
@include tm-icon-size(16px);
|
|
853
|
+
|
|
854
|
+
stroke-width: 1.5;
|
|
692
855
|
}
|
|
693
856
|
|
|
694
857
|
&--small {
|
|
695
858
|
@include tm-icon-size(14px);
|
|
859
|
+
|
|
860
|
+
stroke-width: 1.2;
|
|
696
861
|
}
|
|
697
862
|
}
|
|
698
863
|
|
|
@@ -703,14 +868,20 @@
|
|
|
703
868
|
|
|
704
869
|
&--large {
|
|
705
870
|
@include tm-icon-size(16px);
|
|
871
|
+
|
|
872
|
+
stroke-width: 1.8;
|
|
706
873
|
}
|
|
707
874
|
|
|
708
875
|
&--medium {
|
|
709
876
|
@include tm-icon-size(16px);
|
|
877
|
+
|
|
878
|
+
stroke-width: 1.5;
|
|
710
879
|
}
|
|
711
880
|
|
|
712
881
|
&--small {
|
|
713
882
|
@include tm-icon-size(14px);
|
|
883
|
+
|
|
884
|
+
stroke-width: 1.2;
|
|
714
885
|
}
|
|
715
886
|
}
|
|
716
887
|
|
|
@@ -721,14 +892,20 @@
|
|
|
721
892
|
|
|
722
893
|
&--large {
|
|
723
894
|
@include tm-icon-size(16px);
|
|
895
|
+
|
|
896
|
+
stroke-width: 1.8;
|
|
724
897
|
}
|
|
725
898
|
|
|
726
899
|
&--medium {
|
|
727
900
|
@include tm-icon-size(16px);
|
|
901
|
+
|
|
902
|
+
stroke-width: 1.5;
|
|
728
903
|
}
|
|
729
904
|
|
|
730
905
|
&--small {
|
|
731
906
|
@include tm-icon-size(14px);
|
|
907
|
+
|
|
908
|
+
stroke-width: 1.2;
|
|
732
909
|
}
|
|
733
910
|
}
|
|
734
911
|
|
|
@@ -737,14 +914,20 @@
|
|
|
737
914
|
|
|
738
915
|
&--large {
|
|
739
916
|
@include tm-icon-size(16px);
|
|
917
|
+
|
|
918
|
+
stroke-width: 1.8;
|
|
740
919
|
}
|
|
741
920
|
|
|
742
921
|
&--medium {
|
|
743
922
|
@include tm-icon-size(16px);
|
|
923
|
+
|
|
924
|
+
stroke-width: 1.5;
|
|
744
925
|
}
|
|
745
926
|
|
|
746
927
|
&--small {
|
|
747
928
|
@include tm-icon-size(14px);
|
|
929
|
+
|
|
930
|
+
stroke-width: 1.2;
|
|
748
931
|
}
|
|
749
932
|
}
|
|
750
933
|
|
|
@@ -755,14 +938,20 @@
|
|
|
755
938
|
|
|
756
939
|
&--large {
|
|
757
940
|
@include tm-icon-size(16px);
|
|
941
|
+
|
|
942
|
+
stroke-width: 1.8;
|
|
758
943
|
}
|
|
759
944
|
|
|
760
945
|
&--medium {
|
|
761
946
|
@include tm-icon-size(16px);
|
|
947
|
+
|
|
948
|
+
stroke-width: 1.5;
|
|
762
949
|
}
|
|
763
950
|
|
|
764
951
|
&--small {
|
|
765
952
|
@include tm-icon-size(14px);
|
|
953
|
+
|
|
954
|
+
stroke-width: 1.2;
|
|
766
955
|
}
|
|
767
956
|
}
|
|
768
957
|
|
|
@@ -773,14 +962,20 @@
|
|
|
773
962
|
|
|
774
963
|
&--large {
|
|
775
964
|
@include tm-icon-size(16px);
|
|
965
|
+
|
|
966
|
+
stroke-width: 1.8;
|
|
776
967
|
}
|
|
777
968
|
|
|
778
969
|
&--medium {
|
|
779
970
|
@include tm-icon-size(16px);
|
|
971
|
+
|
|
972
|
+
stroke-width: 1.5;
|
|
780
973
|
}
|
|
781
974
|
|
|
782
975
|
&--small {
|
|
783
976
|
@include tm-icon-size(14px);
|
|
977
|
+
|
|
978
|
+
stroke-width: 1.2;
|
|
784
979
|
}
|
|
785
980
|
}
|
|
786
981
|
|
|
@@ -789,14 +984,20 @@
|
|
|
789
984
|
|
|
790
985
|
&--large {
|
|
791
986
|
@include tm-icon-size(16px);
|
|
987
|
+
|
|
988
|
+
stroke-width: 1.8;
|
|
792
989
|
}
|
|
793
990
|
|
|
794
991
|
&--medium {
|
|
795
992
|
@include tm-icon-size(16px);
|
|
993
|
+
|
|
994
|
+
stroke-width: 1.5;
|
|
796
995
|
}
|
|
797
996
|
|
|
798
997
|
&--small {
|
|
799
998
|
@include tm-icon-size(14px);
|
|
999
|
+
|
|
1000
|
+
stroke-width: 1.2;
|
|
800
1001
|
}
|
|
801
1002
|
}
|
|
802
1003
|
|
|
@@ -807,14 +1008,20 @@
|
|
|
807
1008
|
|
|
808
1009
|
&--large {
|
|
809
1010
|
@include tm-icon-size(16px);
|
|
1011
|
+
|
|
1012
|
+
stroke-width: 1.8;
|
|
810
1013
|
}
|
|
811
1014
|
|
|
812
1015
|
&--medium {
|
|
813
1016
|
@include tm-icon-size(16px);
|
|
1017
|
+
|
|
1018
|
+
stroke-width: 1.5;
|
|
814
1019
|
}
|
|
815
1020
|
|
|
816
1021
|
&--small {
|
|
817
1022
|
@include tm-icon-size(14px);
|
|
1023
|
+
|
|
1024
|
+
stroke-width: 1.2;
|
|
818
1025
|
}
|
|
819
1026
|
}
|
|
820
1027
|
|
|
@@ -825,14 +1032,20 @@
|
|
|
825
1032
|
|
|
826
1033
|
&--large {
|
|
827
1034
|
@include tm-icon-size(16px);
|
|
1035
|
+
|
|
1036
|
+
stroke-width: 1.8;
|
|
828
1037
|
}
|
|
829
1038
|
|
|
830
1039
|
&--medium {
|
|
831
1040
|
@include tm-icon-size(16px);
|
|
1041
|
+
|
|
1042
|
+
stroke-width: 1.5;
|
|
832
1043
|
}
|
|
833
1044
|
|
|
834
1045
|
&--small {
|
|
835
1046
|
@include tm-icon-size(14px);
|
|
1047
|
+
|
|
1048
|
+
stroke-width: 1.2;
|
|
836
1049
|
}
|
|
837
1050
|
}
|
|
838
1051
|
|
|
@@ -841,14 +1054,20 @@
|
|
|
841
1054
|
|
|
842
1055
|
&--large {
|
|
843
1056
|
@include tm-icon-size(16px);
|
|
1057
|
+
|
|
1058
|
+
stroke-width: 1.8;
|
|
844
1059
|
}
|
|
845
1060
|
|
|
846
1061
|
&--medium {
|
|
847
1062
|
@include tm-icon-size(16px);
|
|
1063
|
+
|
|
1064
|
+
stroke-width: 1.5;
|
|
848
1065
|
}
|
|
849
1066
|
|
|
850
1067
|
&--small {
|
|
851
1068
|
@include tm-icon-size(14px);
|
|
1069
|
+
|
|
1070
|
+
stroke-width: 1.2;
|
|
852
1071
|
}
|
|
853
1072
|
}
|
|
854
1073
|
|
|
@@ -859,14 +1078,20 @@
|
|
|
859
1078
|
|
|
860
1079
|
&--large {
|
|
861
1080
|
@include tm-icon-size(16px);
|
|
1081
|
+
|
|
1082
|
+
stroke-width: 1.8;
|
|
862
1083
|
}
|
|
863
1084
|
|
|
864
1085
|
&--medium {
|
|
865
1086
|
@include tm-icon-size(16px);
|
|
1087
|
+
|
|
1088
|
+
stroke-width: 1.5;
|
|
866
1089
|
}
|
|
867
1090
|
|
|
868
1091
|
&--small {
|
|
869
1092
|
@include tm-icon-size(14px);
|
|
1093
|
+
|
|
1094
|
+
stroke-width: 1.2;
|
|
870
1095
|
}
|
|
871
1096
|
}
|
|
872
1097
|
|
|
@@ -877,14 +1102,20 @@
|
|
|
877
1102
|
|
|
878
1103
|
&--large {
|
|
879
1104
|
@include tm-icon-size(16px);
|
|
1105
|
+
|
|
1106
|
+
stroke-width: 1.8;
|
|
880
1107
|
}
|
|
881
1108
|
|
|
882
1109
|
&--medium {
|
|
883
1110
|
@include tm-icon-size(16px);
|
|
1111
|
+
|
|
1112
|
+
stroke-width: 1.5;
|
|
884
1113
|
}
|
|
885
1114
|
|
|
886
1115
|
&--small {
|
|
887
1116
|
@include tm-icon-size(14px);
|
|
1117
|
+
|
|
1118
|
+
stroke-width: 1.2;
|
|
888
1119
|
}
|
|
889
1120
|
}
|
|
890
1121
|
|
|
@@ -893,14 +1124,20 @@
|
|
|
893
1124
|
|
|
894
1125
|
&--large {
|
|
895
1126
|
@include tm-icon-size(16px);
|
|
1127
|
+
|
|
1128
|
+
stroke-width: 1.8;
|
|
896
1129
|
}
|
|
897
1130
|
|
|
898
1131
|
&--medium {
|
|
899
1132
|
@include tm-icon-size(16px);
|
|
1133
|
+
|
|
1134
|
+
stroke-width: 1.5;
|
|
900
1135
|
}
|
|
901
1136
|
|
|
902
1137
|
&--small {
|
|
903
1138
|
@include tm-icon-size(14px);
|
|
1139
|
+
|
|
1140
|
+
stroke-width: 1.2;
|
|
904
1141
|
}
|
|
905
1142
|
}
|
|
906
1143
|
|
|
@@ -911,14 +1148,20 @@
|
|
|
911
1148
|
|
|
912
1149
|
&--large {
|
|
913
1150
|
@include tm-icon-size(16px);
|
|
1151
|
+
|
|
1152
|
+
stroke-width: 1.8;
|
|
914
1153
|
}
|
|
915
1154
|
|
|
916
1155
|
&--medium {
|
|
917
1156
|
@include tm-icon-size(16px);
|
|
1157
|
+
|
|
1158
|
+
stroke-width: 1.5;
|
|
918
1159
|
}
|
|
919
1160
|
|
|
920
1161
|
&--small {
|
|
921
1162
|
@include tm-icon-size(14px);
|
|
1163
|
+
|
|
1164
|
+
stroke-width: 1.2;
|
|
922
1165
|
}
|
|
923
1166
|
}
|
|
924
1167
|
|
|
@@ -929,14 +1172,20 @@
|
|
|
929
1172
|
|
|
930
1173
|
&--large {
|
|
931
1174
|
@include tm-icon-size(16px);
|
|
1175
|
+
|
|
1176
|
+
stroke-width: 1.8;
|
|
932
1177
|
}
|
|
933
1178
|
|
|
934
1179
|
&--medium {
|
|
935
1180
|
@include tm-icon-size(16px);
|
|
1181
|
+
|
|
1182
|
+
stroke-width: 1.5;
|
|
936
1183
|
}
|
|
937
1184
|
|
|
938
1185
|
&--small {
|
|
939
1186
|
@include tm-icon-size(14px);
|
|
1187
|
+
|
|
1188
|
+
stroke-width: 1.2;
|
|
940
1189
|
}
|
|
941
1190
|
}
|
|
942
1191
|
|
|
@@ -945,14 +1194,20 @@
|
|
|
945
1194
|
|
|
946
1195
|
&--large {
|
|
947
1196
|
@include tm-icon-size(16px);
|
|
1197
|
+
|
|
1198
|
+
stroke-width: 1.8;
|
|
948
1199
|
}
|
|
949
1200
|
|
|
950
1201
|
&--medium {
|
|
951
1202
|
@include tm-icon-size(16px);
|
|
1203
|
+
|
|
1204
|
+
stroke-width: 1.5;
|
|
952
1205
|
}
|
|
953
1206
|
|
|
954
1207
|
&--small {
|
|
955
1208
|
@include tm-icon-size(14px);
|
|
1209
|
+
|
|
1210
|
+
stroke-width: 1.2;
|
|
956
1211
|
}
|
|
957
1212
|
}
|
|
958
1213
|
|
|
@@ -963,14 +1218,20 @@
|
|
|
963
1218
|
|
|
964
1219
|
&--large {
|
|
965
1220
|
@include tm-icon-size(16px);
|
|
1221
|
+
|
|
1222
|
+
stroke-width: 1.8;
|
|
966
1223
|
}
|
|
967
1224
|
|
|
968
1225
|
&--medium {
|
|
969
1226
|
@include tm-icon-size(16px);
|
|
1227
|
+
|
|
1228
|
+
stroke-width: 1.5;
|
|
970
1229
|
}
|
|
971
1230
|
|
|
972
1231
|
&--small {
|
|
973
1232
|
@include tm-icon-size(14px);
|
|
1233
|
+
|
|
1234
|
+
stroke-width: 1.2;
|
|
974
1235
|
}
|
|
975
1236
|
}
|
|
976
1237
|
|
|
@@ -981,14 +1242,20 @@
|
|
|
981
1242
|
|
|
982
1243
|
&--large {
|
|
983
1244
|
@include tm-icon-size(16px);
|
|
1245
|
+
|
|
1246
|
+
stroke-width: 1.8;
|
|
984
1247
|
}
|
|
985
1248
|
|
|
986
1249
|
&--medium {
|
|
987
1250
|
@include tm-icon-size(16px);
|
|
1251
|
+
|
|
1252
|
+
stroke-width: 1.5;
|
|
988
1253
|
}
|
|
989
1254
|
|
|
990
1255
|
&--small {
|
|
991
1256
|
@include tm-icon-size(14px);
|
|
1257
|
+
|
|
1258
|
+
stroke-width: 1.2;
|
|
992
1259
|
}
|
|
993
1260
|
}
|
|
994
1261
|
|
|
@@ -997,14 +1264,20 @@
|
|
|
997
1264
|
|
|
998
1265
|
&--large {
|
|
999
1266
|
@include tm-icon-size(16px);
|
|
1267
|
+
|
|
1268
|
+
stroke-width: 1.8;
|
|
1000
1269
|
}
|
|
1001
1270
|
|
|
1002
1271
|
&--medium {
|
|
1003
1272
|
@include tm-icon-size(16px);
|
|
1273
|
+
|
|
1274
|
+
stroke-width: 1.5;
|
|
1004
1275
|
}
|
|
1005
1276
|
|
|
1006
1277
|
&--small {
|
|
1007
1278
|
@include tm-icon-size(14px);
|
|
1279
|
+
|
|
1280
|
+
stroke-width: 1.2;
|
|
1008
1281
|
}
|
|
1009
1282
|
}
|
|
1010
1283
|
|
|
@@ -1015,14 +1288,20 @@
|
|
|
1015
1288
|
|
|
1016
1289
|
&--large {
|
|
1017
1290
|
@include tm-icon-size(16px);
|
|
1291
|
+
|
|
1292
|
+
stroke-width: 1.8;
|
|
1018
1293
|
}
|
|
1019
1294
|
|
|
1020
1295
|
&--medium {
|
|
1021
1296
|
@include tm-icon-size(16px);
|
|
1297
|
+
|
|
1298
|
+
stroke-width: 1.5;
|
|
1022
1299
|
}
|
|
1023
1300
|
|
|
1024
1301
|
&--small {
|
|
1025
1302
|
@include tm-icon-size(14px);
|
|
1303
|
+
|
|
1304
|
+
stroke-width: 1.2;
|
|
1026
1305
|
}
|
|
1027
1306
|
}
|
|
1028
1307
|
|
|
@@ -1033,14 +1312,20 @@
|
|
|
1033
1312
|
|
|
1034
1313
|
&--large {
|
|
1035
1314
|
@include tm-icon-size(16px);
|
|
1315
|
+
|
|
1316
|
+
stroke-width: 1.8;
|
|
1036
1317
|
}
|
|
1037
1318
|
|
|
1038
1319
|
&--medium {
|
|
1039
1320
|
@include tm-icon-size(16px);
|
|
1321
|
+
|
|
1322
|
+
stroke-width: 1.5;
|
|
1040
1323
|
}
|
|
1041
1324
|
|
|
1042
1325
|
&--small {
|
|
1043
1326
|
@include tm-icon-size(14px);
|
|
1327
|
+
|
|
1328
|
+
stroke-width: 1.2;
|
|
1044
1329
|
}
|
|
1045
1330
|
}
|
|
1046
1331
|
|
|
@@ -1049,14 +1334,20 @@
|
|
|
1049
1334
|
|
|
1050
1335
|
&--large {
|
|
1051
1336
|
@include tm-icon-size(16px);
|
|
1337
|
+
|
|
1338
|
+
stroke-width: 1.8;
|
|
1052
1339
|
}
|
|
1053
1340
|
|
|
1054
1341
|
&--medium {
|
|
1055
1342
|
@include tm-icon-size(16px);
|
|
1343
|
+
|
|
1344
|
+
stroke-width: 1.5;
|
|
1056
1345
|
}
|
|
1057
1346
|
|
|
1058
1347
|
&--small {
|
|
1059
1348
|
@include tm-icon-size(14px);
|
|
1349
|
+
|
|
1350
|
+
stroke-width: 1.2;
|
|
1060
1351
|
}
|
|
1061
1352
|
}
|
|
1062
1353
|
|
|
@@ -1067,14 +1358,20 @@
|
|
|
1067
1358
|
|
|
1068
1359
|
&--large {
|
|
1069
1360
|
@include tm-icon-size(16px);
|
|
1361
|
+
|
|
1362
|
+
stroke-width: 1.8;
|
|
1070
1363
|
}
|
|
1071
1364
|
|
|
1072
1365
|
&--medium {
|
|
1073
1366
|
@include tm-icon-size(16px);
|
|
1367
|
+
|
|
1368
|
+
stroke-width: 1.5;
|
|
1074
1369
|
}
|
|
1075
1370
|
|
|
1076
1371
|
&--small {
|
|
1077
1372
|
@include tm-icon-size(14px);
|
|
1373
|
+
|
|
1374
|
+
stroke-width: 1.2;
|
|
1078
1375
|
}
|
|
1079
1376
|
}
|
|
1080
1377
|
|
|
@@ -1085,14 +1382,20 @@
|
|
|
1085
1382
|
|
|
1086
1383
|
&--large {
|
|
1087
1384
|
@include tm-icon-size(16px);
|
|
1385
|
+
|
|
1386
|
+
stroke-width: 1.8;
|
|
1088
1387
|
}
|
|
1089
1388
|
|
|
1090
1389
|
&--medium {
|
|
1091
1390
|
@include tm-icon-size(16px);
|
|
1391
|
+
|
|
1392
|
+
stroke-width: 1.5;
|
|
1092
1393
|
}
|
|
1093
1394
|
|
|
1094
1395
|
&--small {
|
|
1095
1396
|
@include tm-icon-size(14px);
|
|
1397
|
+
|
|
1398
|
+
stroke-width: 1.2;
|
|
1096
1399
|
}
|
|
1097
1400
|
}
|
|
1098
1401
|
|
|
@@ -1101,14 +1404,20 @@
|
|
|
1101
1404
|
|
|
1102
1405
|
&--large {
|
|
1103
1406
|
@include tm-icon-size(16px);
|
|
1407
|
+
|
|
1408
|
+
stroke-width: 1.8;
|
|
1104
1409
|
}
|
|
1105
1410
|
|
|
1106
1411
|
&--medium {
|
|
1107
1412
|
@include tm-icon-size(16px);
|
|
1413
|
+
|
|
1414
|
+
stroke-width: 1.5;
|
|
1108
1415
|
}
|
|
1109
1416
|
|
|
1110
1417
|
&--small {
|
|
1111
1418
|
@include tm-icon-size(14px);
|
|
1419
|
+
|
|
1420
|
+
stroke-width: 1.2;
|
|
1112
1421
|
}
|
|
1113
1422
|
}
|
|
1114
1423
|
|
|
@@ -1119,14 +1428,20 @@
|
|
|
1119
1428
|
|
|
1120
1429
|
&--large {
|
|
1121
1430
|
@include tm-icon-size(16px);
|
|
1431
|
+
|
|
1432
|
+
stroke-width: 1.8;
|
|
1122
1433
|
}
|
|
1123
1434
|
|
|
1124
1435
|
&--medium {
|
|
1125
1436
|
@include tm-icon-size(16px);
|
|
1437
|
+
|
|
1438
|
+
stroke-width: 1.5;
|
|
1126
1439
|
}
|
|
1127
1440
|
|
|
1128
1441
|
&--small {
|
|
1129
1442
|
@include tm-icon-size(14px);
|
|
1443
|
+
|
|
1444
|
+
stroke-width: 1.2;
|
|
1130
1445
|
}
|
|
1131
1446
|
}
|
|
1132
1447
|
|
|
@@ -1137,14 +1452,20 @@
|
|
|
1137
1452
|
|
|
1138
1453
|
&--large {
|
|
1139
1454
|
@include tm-icon-size(16px);
|
|
1455
|
+
|
|
1456
|
+
stroke-width: 1.8;
|
|
1140
1457
|
}
|
|
1141
1458
|
|
|
1142
1459
|
&--medium {
|
|
1143
1460
|
@include tm-icon-size(16px);
|
|
1461
|
+
|
|
1462
|
+
stroke-width: 1.5;
|
|
1144
1463
|
}
|
|
1145
1464
|
|
|
1146
1465
|
&--small {
|
|
1147
1466
|
@include tm-icon-size(14px);
|
|
1467
|
+
|
|
1468
|
+
stroke-width: 1.2;
|
|
1148
1469
|
}
|
|
1149
1470
|
}
|
|
1150
1471
|
|
|
@@ -1153,14 +1474,20 @@
|
|
|
1153
1474
|
|
|
1154
1475
|
&--large {
|
|
1155
1476
|
@include tm-icon-size(16px);
|
|
1477
|
+
|
|
1478
|
+
stroke-width: 1.8;
|
|
1156
1479
|
}
|
|
1157
1480
|
|
|
1158
1481
|
&--medium {
|
|
1159
1482
|
@include tm-icon-size(16px);
|
|
1483
|
+
|
|
1484
|
+
stroke-width: 1.5;
|
|
1160
1485
|
}
|
|
1161
1486
|
|
|
1162
1487
|
&--small {
|
|
1163
1488
|
@include tm-icon-size(14px);
|
|
1489
|
+
|
|
1490
|
+
stroke-width: 1.2;
|
|
1164
1491
|
}
|
|
1165
1492
|
}
|
|
1166
1493
|
|
|
@@ -1171,14 +1498,20 @@
|
|
|
1171
1498
|
|
|
1172
1499
|
&--large {
|
|
1173
1500
|
@include tm-icon-size(16px);
|
|
1501
|
+
|
|
1502
|
+
stroke-width: 1.8;
|
|
1174
1503
|
}
|
|
1175
1504
|
|
|
1176
1505
|
&--medium {
|
|
1177
1506
|
@include tm-icon-size(16px);
|
|
1507
|
+
|
|
1508
|
+
stroke-width: 1.5;
|
|
1178
1509
|
}
|
|
1179
1510
|
|
|
1180
1511
|
&--small {
|
|
1181
1512
|
@include tm-icon-size(14px);
|
|
1513
|
+
|
|
1514
|
+
stroke-width: 1.2;
|
|
1182
1515
|
}
|
|
1183
1516
|
}
|
|
1184
1517
|
|
|
@@ -1189,14 +1522,20 @@
|
|
|
1189
1522
|
|
|
1190
1523
|
&--large {
|
|
1191
1524
|
@include tm-icon-size(16px);
|
|
1525
|
+
|
|
1526
|
+
stroke-width: 1.8;
|
|
1192
1527
|
}
|
|
1193
1528
|
|
|
1194
1529
|
&--medium {
|
|
1195
1530
|
@include tm-icon-size(16px);
|
|
1531
|
+
|
|
1532
|
+
stroke-width: 1.5;
|
|
1196
1533
|
}
|
|
1197
1534
|
|
|
1198
1535
|
&--small {
|
|
1199
1536
|
@include tm-icon-size(14px);
|
|
1537
|
+
|
|
1538
|
+
stroke-width: 1.2;
|
|
1200
1539
|
}
|
|
1201
1540
|
}
|
|
1202
1541
|
|
|
@@ -1205,14 +1544,20 @@
|
|
|
1205
1544
|
|
|
1206
1545
|
&--large {
|
|
1207
1546
|
@include tm-icon-size(16px);
|
|
1547
|
+
|
|
1548
|
+
stroke-width: 1.8;
|
|
1208
1549
|
}
|
|
1209
1550
|
|
|
1210
1551
|
&--medium {
|
|
1211
1552
|
@include tm-icon-size(16px);
|
|
1553
|
+
|
|
1554
|
+
stroke-width: 1.5;
|
|
1212
1555
|
}
|
|
1213
1556
|
|
|
1214
1557
|
&--small {
|
|
1215
1558
|
@include tm-icon-size(14px);
|
|
1559
|
+
|
|
1560
|
+
stroke-width: 1.2;
|
|
1216
1561
|
}
|
|
1217
1562
|
}
|
|
1218
1563
|
|
|
@@ -1223,14 +1568,20 @@
|
|
|
1223
1568
|
|
|
1224
1569
|
&--large {
|
|
1225
1570
|
@include tm-icon-size(16px);
|
|
1571
|
+
|
|
1572
|
+
stroke-width: 1.8;
|
|
1226
1573
|
}
|
|
1227
1574
|
|
|
1228
1575
|
&--medium {
|
|
1229
1576
|
@include tm-icon-size(16px);
|
|
1577
|
+
|
|
1578
|
+
stroke-width: 1.5;
|
|
1230
1579
|
}
|
|
1231
1580
|
|
|
1232
1581
|
&--small {
|
|
1233
1582
|
@include tm-icon-size(14px);
|
|
1583
|
+
|
|
1584
|
+
stroke-width: 1.2;
|
|
1234
1585
|
}
|
|
1235
1586
|
}
|
|
1236
1587
|
|
|
@@ -1241,14 +1592,20 @@
|
|
|
1241
1592
|
|
|
1242
1593
|
&--large {
|
|
1243
1594
|
@include tm-icon-size(16px);
|
|
1595
|
+
|
|
1596
|
+
stroke-width: 1.8;
|
|
1244
1597
|
}
|
|
1245
1598
|
|
|
1246
1599
|
&--medium {
|
|
1247
1600
|
@include tm-icon-size(16px);
|
|
1601
|
+
|
|
1602
|
+
stroke-width: 1.5;
|
|
1248
1603
|
}
|
|
1249
1604
|
|
|
1250
1605
|
&--small {
|
|
1251
1606
|
@include tm-icon-size(14px);
|
|
1607
|
+
|
|
1608
|
+
stroke-width: 1.2;
|
|
1252
1609
|
}
|
|
1253
1610
|
}
|
|
1254
1611
|
|
|
@@ -1257,14 +1614,20 @@
|
|
|
1257
1614
|
|
|
1258
1615
|
&--large {
|
|
1259
1616
|
@include tm-icon-size(16px);
|
|
1617
|
+
|
|
1618
|
+
stroke-width: 1.8;
|
|
1260
1619
|
}
|
|
1261
1620
|
|
|
1262
1621
|
&--medium {
|
|
1263
1622
|
@include tm-icon-size(16px);
|
|
1623
|
+
|
|
1624
|
+
stroke-width: 1.5;
|
|
1264
1625
|
}
|
|
1265
1626
|
|
|
1266
1627
|
&--small {
|
|
1267
1628
|
@include tm-icon-size(14px);
|
|
1629
|
+
|
|
1630
|
+
stroke-width: 1.2;
|
|
1268
1631
|
}
|
|
1269
1632
|
}
|
|
1270
1633
|
|
|
@@ -1275,14 +1638,20 @@
|
|
|
1275
1638
|
|
|
1276
1639
|
&--large {
|
|
1277
1640
|
@include tm-icon-size(16px);
|
|
1641
|
+
|
|
1642
|
+
stroke-width: 1.8;
|
|
1278
1643
|
}
|
|
1279
1644
|
|
|
1280
1645
|
&--medium {
|
|
1281
1646
|
@include tm-icon-size(16px);
|
|
1647
|
+
|
|
1648
|
+
stroke-width: 1.5;
|
|
1282
1649
|
}
|
|
1283
1650
|
|
|
1284
1651
|
&--small {
|
|
1285
1652
|
@include tm-icon-size(14px);
|
|
1653
|
+
|
|
1654
|
+
stroke-width: 1.2;
|
|
1286
1655
|
}
|
|
1287
1656
|
}
|
|
1288
1657
|
|
|
@@ -1293,14 +1662,20 @@
|
|
|
1293
1662
|
|
|
1294
1663
|
&--large {
|
|
1295
1664
|
@include tm-icon-size(16px);
|
|
1665
|
+
|
|
1666
|
+
stroke-width: 1.8;
|
|
1296
1667
|
}
|
|
1297
1668
|
|
|
1298
1669
|
&--medium {
|
|
1299
1670
|
@include tm-icon-size(16px);
|
|
1671
|
+
|
|
1672
|
+
stroke-width: 1.5;
|
|
1300
1673
|
}
|
|
1301
1674
|
|
|
1302
1675
|
&--small {
|
|
1303
1676
|
@include tm-icon-size(14px);
|
|
1677
|
+
|
|
1678
|
+
stroke-width: 1.2;
|
|
1304
1679
|
}
|
|
1305
1680
|
}
|
|
1306
1681
|
|
|
@@ -1309,14 +1684,20 @@
|
|
|
1309
1684
|
|
|
1310
1685
|
&--large {
|
|
1311
1686
|
@include tm-icon-size(16px);
|
|
1687
|
+
|
|
1688
|
+
stroke-width: 1.8;
|
|
1312
1689
|
}
|
|
1313
1690
|
|
|
1314
1691
|
&--medium {
|
|
1315
1692
|
@include tm-icon-size(16px);
|
|
1693
|
+
|
|
1694
|
+
stroke-width: 1.5;
|
|
1316
1695
|
}
|
|
1317
1696
|
|
|
1318
1697
|
&--small {
|
|
1319
1698
|
@include tm-icon-size(14px);
|
|
1699
|
+
|
|
1700
|
+
stroke-width: 1.2;
|
|
1320
1701
|
}
|
|
1321
1702
|
}
|
|
1322
1703
|
|
|
@@ -1327,14 +1708,20 @@
|
|
|
1327
1708
|
|
|
1328
1709
|
&--large {
|
|
1329
1710
|
@include tm-icon-size(16px);
|
|
1711
|
+
|
|
1712
|
+
stroke-width: 1.8;
|
|
1330
1713
|
}
|
|
1331
1714
|
|
|
1332
1715
|
&--medium {
|
|
1333
1716
|
@include tm-icon-size(16px);
|
|
1717
|
+
|
|
1718
|
+
stroke-width: 1.5;
|
|
1334
1719
|
}
|
|
1335
1720
|
|
|
1336
1721
|
&--small {
|
|
1337
1722
|
@include tm-icon-size(14px);
|
|
1723
|
+
|
|
1724
|
+
stroke-width: 1.2;
|
|
1338
1725
|
}
|
|
1339
1726
|
}
|
|
1340
1727
|
|
|
@@ -1345,14 +1732,20 @@
|
|
|
1345
1732
|
|
|
1346
1733
|
&--large {
|
|
1347
1734
|
@include tm-icon-size(16px);
|
|
1735
|
+
|
|
1736
|
+
stroke-width: 1.8;
|
|
1348
1737
|
}
|
|
1349
1738
|
|
|
1350
1739
|
&--medium {
|
|
1351
1740
|
@include tm-icon-size(16px);
|
|
1741
|
+
|
|
1742
|
+
stroke-width: 1.5;
|
|
1352
1743
|
}
|
|
1353
1744
|
|
|
1354
1745
|
&--small {
|
|
1355
1746
|
@include tm-icon-size(14px);
|
|
1747
|
+
|
|
1748
|
+
stroke-width: 1.2;
|
|
1356
1749
|
}
|
|
1357
1750
|
}
|
|
1358
1751
|
|
|
@@ -1361,14 +1754,20 @@
|
|
|
1361
1754
|
|
|
1362
1755
|
&--large {
|
|
1363
1756
|
@include tm-icon-size(16px);
|
|
1757
|
+
|
|
1758
|
+
stroke-width: 1.8;
|
|
1364
1759
|
}
|
|
1365
1760
|
|
|
1366
1761
|
&--medium {
|
|
1367
1762
|
@include tm-icon-size(16px);
|
|
1763
|
+
|
|
1764
|
+
stroke-width: 1.5;
|
|
1368
1765
|
}
|
|
1369
1766
|
|
|
1370
1767
|
&--small {
|
|
1371
1768
|
@include tm-icon-size(14px);
|
|
1769
|
+
|
|
1770
|
+
stroke-width: 1.2;
|
|
1372
1771
|
}
|
|
1373
1772
|
}
|
|
1374
1773
|
|
|
@@ -1379,14 +1778,20 @@
|
|
|
1379
1778
|
|
|
1380
1779
|
&--large {
|
|
1381
1780
|
@include tm-icon-size(16px);
|
|
1781
|
+
|
|
1782
|
+
stroke-width: 1.8;
|
|
1382
1783
|
}
|
|
1383
1784
|
|
|
1384
1785
|
&--medium {
|
|
1385
1786
|
@include tm-icon-size(16px);
|
|
1787
|
+
|
|
1788
|
+
stroke-width: 1.5;
|
|
1386
1789
|
}
|
|
1387
1790
|
|
|
1388
1791
|
&--small {
|
|
1389
1792
|
@include tm-icon-size(14px);
|
|
1793
|
+
|
|
1794
|
+
stroke-width: 1.2;
|
|
1390
1795
|
}
|
|
1391
1796
|
}
|
|
1392
1797
|
|
|
@@ -1397,14 +1802,20 @@
|
|
|
1397
1802
|
|
|
1398
1803
|
&--large {
|
|
1399
1804
|
@include tm-icon-size(16px);
|
|
1805
|
+
|
|
1806
|
+
stroke-width: 1.8;
|
|
1400
1807
|
}
|
|
1401
1808
|
|
|
1402
1809
|
&--medium {
|
|
1403
1810
|
@include tm-icon-size(16px);
|
|
1811
|
+
|
|
1812
|
+
stroke-width: 1.5;
|
|
1404
1813
|
}
|
|
1405
1814
|
|
|
1406
1815
|
&--small {
|
|
1407
1816
|
@include tm-icon-size(14px);
|
|
1817
|
+
|
|
1818
|
+
stroke-width: 1.2;
|
|
1408
1819
|
}
|
|
1409
1820
|
}
|
|
1410
1821
|
|
|
@@ -1413,14 +1824,20 @@
|
|
|
1413
1824
|
|
|
1414
1825
|
&--large {
|
|
1415
1826
|
@include tm-icon-size(16px);
|
|
1827
|
+
|
|
1828
|
+
stroke-width: 1.8;
|
|
1416
1829
|
}
|
|
1417
1830
|
|
|
1418
1831
|
&--medium {
|
|
1419
1832
|
@include tm-icon-size(16px);
|
|
1833
|
+
|
|
1834
|
+
stroke-width: 1.5;
|
|
1420
1835
|
}
|
|
1421
1836
|
|
|
1422
1837
|
&--small {
|
|
1423
1838
|
@include tm-icon-size(14px);
|
|
1839
|
+
|
|
1840
|
+
stroke-width: 1.2;
|
|
1424
1841
|
}
|
|
1425
1842
|
}
|
|
1426
1843
|
|