@golstats/gsc-top-player 1.0.8 → 1.0.10

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.
@@ -10,7 +10,7 @@
10
10
  <!-- jugador -->
11
11
  <div :class="containerLeftClass" id="container-left">
12
12
  <div :class="positionContainerClass">
13
- <div :class="$style.numberPosition">{{ data.position }}</div>
13
+ <div :class="numberPositionClass">{{ data.position }}</div>
14
14
  </div>
15
15
  <div :class="playerContainerClass">
16
16
  <img :class="imgPlayerIconClass" :src="data.player_photo" />
@@ -60,7 +60,7 @@
60
60
  <!-- equipo -->
61
61
  <div :class="containerLeftType1Class" id="container-left">
62
62
  <div :class="positionContainertype1Class">
63
- <div :class="$style.numberPositionType1">{{ data.position }}</div>
63
+ <div :class="numberPositionType1Class">{{ data.position }}</div>
64
64
  </div>
65
65
  <div :class="playerContainerType1Class">
66
66
  <div :class="manchesterUnitedType1Class">{{ data.team_abrev }}</div>
@@ -69,8 +69,8 @@
69
69
  <div :class="containerRightType1Class" id="container-right">
70
70
  <div :class="block02Type1Class">
71
71
  <div :class="$style.containesOptionsType1Games">
72
- <div :class="$style.containerBtnVideosType1Games">
73
- <img :class="$style.imgTeamIcon" alt="" :src="data.team_logo" />
72
+ <div :class="containerBtnVideosType1Class">
73
+ <img :class="imgTeamIconClass" alt="" :src="data.team_logo" />
74
74
  <div :class="numberOfVideosType1Class">{{ data.total }}</div>
75
75
  </div>
76
76
  </div>
@@ -98,7 +98,7 @@
98
98
  <!-- scouting -->
99
99
  <div :class="containerLeftClass" id="container-left">
100
100
  <div :class="positionContainerClass">
101
- <div :class="$style.numberPosition">{{ data.position }}</div>
101
+ <div :class="numberPositionClass">{{ data.position }}</div>
102
102
  </div>
103
103
  <div :class="playerContainerClass">
104
104
  <img :class="imgPlayerIconClass" :src="data.player_photo" />
@@ -152,7 +152,9 @@ export default {
152
152
  computed: {
153
153
  manchesterUnitedType1Class() {
154
154
  const width = this.elementSize.width
155
- if (width <= 320) {
155
+ if (width <= 300) {
156
+ return this.$style.manchesterUnitedType1300
157
+ } else if (width <= 320) {
156
158
  return this.$style.manchesterUnitedType1320
157
159
  } else if (width <= 460) {
158
160
  return this.$style.manchesterUnitedType1460
@@ -162,7 +164,9 @@ export default {
162
164
  },
163
165
  containerRightType1Class() {
164
166
  const width = this.elementSize.width
165
- if (width <= 320) {
167
+ if (width <= 300) {
168
+ return this.$style.containerRightType1300Games
169
+ } else if (width <= 320) {
166
170
  return this.$style.containerRightType1320Games
167
171
  } else if (width <= 420) {
168
172
  return this.$style.containerRightType1420Games
@@ -172,7 +176,9 @@ export default {
172
176
  },
173
177
  teamNameWrapperType1Class() {
174
178
  const width = this.elementSize.width
175
- if (width <= 960) {
179
+ if (width <= 300) {
180
+ return this.$style.teamNameWrapperType1300
181
+ } else if (width <= 960) {
176
182
  return this.$style.teamNameWrapperType1960
177
183
  } else if (width <= 1086) {
178
184
  return this.$style.teamNameWrapperType11086
@@ -182,7 +188,9 @@ export default {
182
188
  },
183
189
  ageWrapperType1Class() {
184
190
  const width = this.elementSize.width
185
- if (width <= 680) {
191
+ if (width <= 300) {
192
+ return this.$style.ageWrapperType1300
193
+ } else if (width <= 680) {
186
194
  return this.$style.ageWrapperType1680
187
195
  } else if (width <= 1086) {
188
196
  return this.$style.ageWrapperType11086
@@ -192,7 +200,9 @@ export default {
192
200
  },
193
201
  ageType1Class() {
194
202
  const width = this.elementSize.width
195
- if (width <= 960) {
203
+ if (width <= 300) {
204
+ return this.$style.ageType1300
205
+ } else if (width <= 960) {
196
206
  return this.$style.ageType1960
197
207
  } else {
198
208
  return this.$style.ageType1
@@ -200,7 +210,9 @@ export default {
200
210
  },
201
211
  playedGamesWrapperType1Class() {
202
212
  const width = this.elementSize.width
203
- if (width <= 680) {
213
+ if (width <= 300) {
214
+ return this.$style.playedGamesWrapperType1300
215
+ } else if (width <= 680) {
204
216
  return this.$style.playedGamesWrapperType1680
205
217
  } else if (width <= 960) {
206
218
  return this.$style.playedGamesWrapperType1960
@@ -210,7 +222,9 @@ export default {
210
222
  },
211
223
  playedGamesType1Class() {
212
224
  const width = this.elementSize.width
213
- if (width <= 540) {
225
+ if (width <= 300) {
226
+ return this.$style.playedGamesType1300
227
+ } else if (width <= 540) {
214
228
  return this.$style.playedGamesType1540
215
229
  } else if (width <= 960) {
216
230
  return this.$style.playedGamesType1960
@@ -222,7 +236,9 @@ export default {
222
236
  },
223
237
  playedMinutesWrapperType1Class() {
224
238
  const width = this.elementSize.width
225
- if (width <= 1086) {
239
+ if (width <= 300) {
240
+ return this.$style.playedMinutesWrapperType1300
241
+ } else if (width <= 1086) {
226
242
  return this.$style.playedMinutesWrapperType11086
227
243
  } else {
228
244
  return this.$style.playedMinutesWrapperType1
@@ -230,7 +246,9 @@ export default {
230
246
  },
231
247
  playedMinutesType1Class() {
232
248
  const width = this.elementSize.width
233
- if (width <= 680) {
249
+ if (width <= 300) {
250
+ return this.$style.playedMinutesType1300
251
+ } else if (width <= 680) {
234
252
  return this.$style.playedMinutesType1680
235
253
  } else {
236
254
  return this.$style.playedMinutesType1
@@ -238,7 +256,9 @@ export default {
238
256
  },
239
257
  block02Type1Class() {
240
258
  const width = this.elementSize.width
241
- if (width <= 320) {
259
+ if (width <= 300) {
260
+ return this.$style.block02Type1300Games
261
+ } else if (width <= 320) {
242
262
  return this.$style.block02Type1320Games
243
263
  } else if (width <= 350) {
244
264
  return this.$style.block02Type1350Games
@@ -250,7 +270,9 @@ export default {
250
270
  },
251
271
  leagueNameWrapperType1Class() {
252
272
  const width = this.elementSize.width
253
- if (width <= 680) {
273
+ if (width <= 300) {
274
+ return this.$style.leagueNameWrapperType1300
275
+ } else if (width <= 680) {
254
276
  return this.$style.leagueNameWrapperType1680
255
277
  } else if (width <= 960) {
256
278
  return this.$style.leagueNameWrapperType1960
@@ -260,7 +282,9 @@ export default {
260
282
  },
261
283
  leagueNameType1Class() {
262
284
  const width = this.elementSize.width
263
- if (width <= 960) {
285
+ if (width <= 300) {
286
+ return this.$style.leagueNameType1300
287
+ } else if (width <= 960) {
264
288
  return this.$style.leagueNameType1960
265
289
  } else {
266
290
  return this.$style.leagueNameType1
@@ -268,7 +292,9 @@ export default {
268
292
  },
269
293
  numberOfVideosType1Class() {
270
294
  const width = this.elementSize.width
271
- if (width <= 680) {
295
+ if (width <= 300) {
296
+ return this.$style.numberOfVideosType1300
297
+ } else if (width <= 680) {
272
298
  return this.$style.numberOfVideosType1680
273
299
  } else if (width <= 1232) {
274
300
  return this.$style.numberOfVideosType11232
@@ -276,9 +302,19 @@ export default {
276
302
  return this.$style.numberOfVideosType1
277
303
  }
278
304
  },
305
+ containerBtnVideosType1Class() {
306
+ const width = this.elementSize.width
307
+ if (width <= 300) {
308
+ return this.$style.containerBtnVideosType1300Games
309
+ } else {
310
+ return this.$style.containerBtnVideosType1Games
311
+ }
312
+ },
279
313
  containerLeftType1Class() {
280
314
  const width = this.elementSize.width
281
- if (width <= 320) {
315
+ if (width <= 300) {
316
+ return this.$style.containerLeftType1300
317
+ } else if (width <= 320) {
282
318
  return this.$style.containerLeftType1320
283
319
  } else if (width <= 350) {
284
320
  return this.$style.containerLeftType1350
@@ -290,7 +326,9 @@ export default {
290
326
  },
291
327
  positionContainertype1Class() {
292
328
  const width = this.elementSize.width
293
- if (width <= 380) {
329
+ if (width <= 300) {
330
+ return this.$style.positionContainertype1300
331
+ } else if (width <= 380) {
294
332
  return this.$style.positionContainertype1380
295
333
  } else if (width <= 420) {
296
334
  return this.$style.positionContainertype1420
@@ -302,7 +340,9 @@ export default {
302
340
  },
303
341
  rowTeamClass() {
304
342
  const width = this.elementSize.width
305
- if (width <= 320) {
343
+ if (width <= 300) {
344
+ return this.$style.rowTeam300
345
+ } else if (width <= 320) {
306
346
  return this.$style.rowTeam320
307
347
  } else if (width <= 350) {
308
348
  return this.$style.rowTeam350
@@ -315,11 +355,18 @@ export default {
315
355
  }
316
356
  },
317
357
  containerBtnVideosClass() {
318
- return this.$style.containerBtnVideosGames
358
+ const width = this.elementSize.width
359
+ if (width <= 300) {
360
+ return this.$style.containerBtnVideos300Games
361
+ } else {
362
+ return this.$style.containerBtnVideosGames
363
+ }
319
364
  },
320
365
  numberOfVideosClass() {
321
366
  const width = this.elementSize.width
322
- if (width <= 620) {
367
+ if (width <= 300) {
368
+ return this.$style.numberOfVideos300
369
+ } else if (width <= 620) {
323
370
  return this.$style.numberOfVideos620
324
371
  } else {
325
372
  return this.$style.numberOfVideos
@@ -327,7 +374,9 @@ export default {
327
374
  },
328
375
  block02Class() {
329
376
  const width = this.elementSize.width
330
- if (width <= 420) {
377
+ if (width <= 300) {
378
+ return this.$style.block02300Games
379
+ } else if (width <= 420) {
331
380
  return this.$style.block02420Games
332
381
  } else if (width <= 620) {
333
382
  return this.$style.block02620Games
@@ -339,7 +388,9 @@ export default {
339
388
  },
340
389
  imgPlayerIconClass() {
341
390
  const width = this.elementSize.width
342
- if (width <= 420) {
391
+ if (width <= 300) {
392
+ return this.$style.imgPlayerIcon300
393
+ } else if (width <= 420) {
343
394
  return this.$style.imgPlayerIcon420
344
395
  } else if (width <= 460) {
345
396
  return this.$style.imgPlayerIcon460
@@ -349,7 +400,9 @@ export default {
349
400
  },
350
401
  manchesterUnitedClass() {
351
402
  const width = this.elementSize.width
352
- if (width <= 360) {
403
+ if (width <= 300) {
404
+ return this.$style.manchesterUnited300Games
405
+ } else if (width <= 360) {
353
406
  return this.$style.manchesterUnited360Games
354
407
  } else if (width <= 420) {
355
408
  return this.$style.manchesterUnited420Games
@@ -361,7 +414,9 @@ export default {
361
414
  },
362
415
  containerRightClass() {
363
416
  const width = this.elementSize.width
364
- if (width <= 420) {
417
+ if (width <= 300) {
418
+ return this.$style.containerRight300Games
419
+ } else if (width <= 420) {
365
420
  return this.$style.containerRight420Games
366
421
  } else if (width <= 960) {
367
422
  return this.$style.containerRight960Games
@@ -371,7 +426,9 @@ export default {
371
426
  },
372
427
  playerContainerType1Class() {
373
428
  const width = this.elementSize.width
374
- if (width <= 320) {
429
+ if (width <= 300) {
430
+ return this.$style.playerContainerType1300Games
431
+ } else if (width <= 320) {
375
432
  return this.$style.playerContainerType1320Games
376
433
  } else if (width <= 460) {
377
434
  return this.$style.playerContainerType1460Games
@@ -381,7 +438,9 @@ export default {
381
438
  },
382
439
  playerContainerClass() {
383
440
  const width = this.elementSize.width
384
- if (width <= 420) {
441
+ if (width <= 300) {
442
+ return this.$style.playerContainer300Games
443
+ } else if (width <= 420) {
385
444
  return this.$style.playerContainer420Games
386
445
  } else if (width <= 460) {
387
446
  return this.$style.playerContainer460Games
@@ -391,7 +450,9 @@ export default {
391
450
  },
392
451
  iconFavoritesClass() {
393
452
  const width = this.elementSize.width
394
- if (width <= 420) {
453
+ if (width <= 300) {
454
+ return this.$style.iconFavorites300
455
+ } else if (width <= 420) {
395
456
  return this.$style.iconFavorites420
396
457
  } else {
397
458
  return this.$style.iconFavorites
@@ -399,7 +460,9 @@ export default {
399
460
  },
400
461
  iconFavoritesType1Class() {
401
462
  const width = this.elementSize.width
402
- if (width <= 320) {
463
+ if (width <= 300) {
464
+ return this.$style.iconFavoritesType1300
465
+ } else if (width <= 320) {
403
466
  return this.$style.iconFavoritesType1320
404
467
  } else {
405
468
  return this.$style.iconFavoritesType1
@@ -407,7 +470,9 @@ export default {
407
470
  },
408
471
  containerLeftClass() {
409
472
  const width = this.elementSize.width
410
- if (width <= 420) {
473
+ if (width <= 300) {
474
+ return this.$style.containerLeft300Games
475
+ } else if (width <= 420) {
411
476
  return this.$style.containerLeft420Games
412
477
  } else if (width <= 620) {
413
478
  return this.$style.containerLeft620Games
@@ -417,15 +482,43 @@ export default {
417
482
  },
418
483
  positionContainerClass() {
419
484
  const width = this.elementSize.width
420
- if (width <= 620) {
485
+ if (width <= 300) {
486
+ return this.$style.positionContainer300
487
+ } else if (width <= 620) {
421
488
  return this.$style.positionContainer620
422
489
  } else {
423
490
  return this.$style.positionContainer
424
491
  }
425
492
  },
493
+ numberPositionType1Class() {
494
+ const width = this.elementSize.width
495
+ if (width <= 300) {
496
+ return this.$style.numberPositionType1300
497
+ } else {
498
+ return this.$style.numberPositionType1
499
+ }
500
+ },
501
+ numberPositionClass() {
502
+ const width = this.elementSize.width
503
+ if (width <= 300) {
504
+ return this.$style.numberPosition300
505
+ } else {
506
+ return this.$style.numberPosition
507
+ }
508
+ },
509
+ imgTeamIconClass() {
510
+ const width = this.elementSize.width
511
+ if (width <= 300) {
512
+ return this.$style.imgTeamIcon300
513
+ } else {
514
+ return this.$style.imgTeamIcon
515
+ }
516
+ },
426
517
  rowwPlayerClass() {
427
518
  const width = this.elementSize.width
428
- if (width <= 420) {
519
+ if (width <= 300) {
520
+ return this.$style.rowwPlayer300Games
521
+ } else if (width <= 420) {
429
522
  return this.$style.rowwPlayer420Games
430
523
  } else if (width <= 460) {
431
524
  return this.$style.rowwPlayer460Games
@@ -558,6 +651,13 @@ export default {
558
651
  justify-content: flex-start;
559
652
  gap: var(--gap-baserow);
560
653
  }
654
+ .positionContainer300 {
655
+ display: flex;
656
+ flex-direction: row;
657
+ align-items: center;
658
+ justify-content: flex-start;
659
+ gap: var(--gap-6xsrow);
660
+ }
561
661
  .positionContainer620 {
562
662
  display: flex;
563
663
  flex-direction: row;
@@ -581,6 +681,22 @@ export default {
581
681
  font-family: v-bind(fontFamily);
582
682
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
583
683
  }
684
+ .rowwPlayer300Games {
685
+ align-self: stretch;
686
+ display: flex;
687
+ height: 45px !important;
688
+ flex-direction: row;
689
+ align-items: center;
690
+ justify-content: flex-start;
691
+ text-align: right;
692
+ background-color: v-bind(background);
693
+ font-size: 10px;
694
+ color: v-bind(fontColor);
695
+ font-family: v-bind(fontFamily);
696
+ gap: var(--gap-0row);
697
+ padding: 0 8px;
698
+ box-sizing: border-box;
699
+ }
584
700
  .rowwPlayer960Games {
585
701
  align-self: stretch;
586
702
  display: flex;
@@ -599,7 +715,7 @@ export default {
599
715
  .rowwPlayer420Games {
600
716
  align-self: stretch;
601
717
  display: flex;
602
- height: 60px !important;
718
+ height: 59px !important;
603
719
  flex-direction: row;
604
720
  align-items: center;
605
721
  justify-content: flex-start;
@@ -615,7 +731,7 @@ export default {
615
731
  .rowwPlayer460Games {
616
732
  align-self: stretch;
617
733
  display: flex;
618
- height: 60px !important;
734
+ height: 59px !important;
619
735
  flex-direction: row;
620
736
  align-items: center;
621
737
  justify-content: flex-start;
@@ -637,6 +753,14 @@ export default {
637
753
  gap: 15px;
638
754
  width: 272px;
639
755
  }
756
+ .containerLeft300Games {
757
+ width: 100px;
758
+ display: flex;
759
+ flex-direction: row;
760
+ align-items: center;
761
+ justify-content: flex-start;
762
+ gap: 8px;
763
+ }
640
764
  .containerLeft420Games {
641
765
  width: 130px;
642
766
  display: flex;
@@ -660,6 +784,14 @@ export default {
660
784
  align-items: center;
661
785
  justify-content: center;
662
786
  }
787
+ .iconFavoritesType1300 {
788
+ display: none;
789
+ flex-direction: column;
790
+ align-items: center;
791
+ justify-content: center;
792
+ width: 14px;
793
+ height: 14px;
794
+ }
663
795
  .iconFavoritesType1320 {
664
796
  display: none;
665
797
  flex-direction: column;
@@ -676,6 +808,14 @@ export default {
676
808
  align-items: center;
677
809
  justify-content: center;
678
810
  }
811
+ .iconFavorites300 {
812
+ width: 14px;
813
+ height: 14px;
814
+ display: flex;
815
+ flex-direction: column;
816
+ align-items: center;
817
+ justify-content: center;
818
+ }
679
819
  .iconFavorites420 {
680
820
  width: 16px;
681
821
  height: 16px;
@@ -696,6 +836,18 @@ export default {
696
836
  margin-left: 0px;
697
837
  font-family: v-bind(fontFamily);
698
838
  }
839
+ .playerContainer300Games {
840
+ position: relative;
841
+ width: 80px;
842
+ display: flex;
843
+ flex-direction: row;
844
+ align-items: center;
845
+ justify-content: flex-start;
846
+ text-align: left;
847
+ margin-left: 8px;
848
+ font-family: v-bind(fontFamily);
849
+ gap: 6px;
850
+ }
699
851
  .playerContainer420Games {
700
852
  position: relative;
701
853
  width: 189px;
@@ -730,6 +882,16 @@ export default {
730
882
  text-align: left;
731
883
  font-family: var(--font-poppins);
732
884
  }
885
+ .playerContainerType1300Games {
886
+ width: 60px;
887
+ display: flex;
888
+ flex-direction: row;
889
+ align-items: center;
890
+ justify-content: flex-start;
891
+ text-align: left;
892
+ font-family: var(--font-poppins);
893
+ gap: 6px;
894
+ }
733
895
  .playerContainerType1320Games {
734
896
  width: 80px;
735
897
  display: flex;
@@ -760,6 +922,16 @@ export default {
760
922
  object-position: top;
761
923
  background: #ffffff;
762
924
  }
925
+ .imgPlayerIcon300 {
926
+ position: absolute;
927
+ width: 20px;
928
+ object-fit: cover;
929
+ border-radius: 60px;
930
+ height: 20px;
931
+ margin-left: 0px;
932
+ object-position: top;
933
+ background: #ffffff;
934
+ }
763
935
  .imgPlayerIcon460 {
764
936
  position: absolute;
765
937
  width: 30px;
@@ -791,6 +963,18 @@ export default {
791
963
  width: 160px;
792
964
  white-space: nowrap;
793
965
  }
966
+ .manchesterUnited300Games {
967
+ position: relative;
968
+ letter-spacing: 0.2px;
969
+ text-overflow: ellipsis;
970
+ overflow: hidden;
971
+ white-space: nowrap;
972
+ line-height: 16px;
973
+ font-weight: 500;
974
+ left: 30px;
975
+ width: 80px;
976
+ font-size: 8px;
977
+ }
794
978
  .manchesterUnited360Games {
795
979
  position: relative;
796
980
  letter-spacing: 0.2px;
@@ -833,6 +1017,18 @@ export default {
833
1017
  text-align: center;
834
1018
  font-family: var(--font-poppins);
835
1019
  }
1020
+ .containerRight300Games {
1021
+ flex: 1;
1022
+ display: flex;
1023
+ flex-direction: row;
1024
+ align-items: center;
1025
+ justify-content: flex-end;
1026
+ text-align: center;
1027
+ font-family: var(--font-poppins);
1028
+ width: auto;
1029
+ align-self: unset;
1030
+ gap: var(--gap-0row);
1031
+ }
836
1032
  .containerRight960Games {
837
1033
  flex: 1;
838
1034
  display: flex;
@@ -860,6 +1056,13 @@ export default {
860
1056
  line-height: 120%;
861
1057
  font-weight: 500;
862
1058
  }
1059
+ .numberOfVideos300 {
1060
+ letter-spacing: -0.03em;
1061
+ line-height: 120%;
1062
+ font-weight: 500;
1063
+ display: flex;
1064
+ font-size: 9px;
1065
+ }
863
1066
  .numberOfVideos620 {
864
1067
  letter-spacing: -0.03em;
865
1068
  line-height: 120%;
@@ -875,7 +1078,15 @@ export default {
875
1078
  text-align: left;
876
1079
  width: 190px;
877
1080
  }
878
-
1081
+ .block02300Games {
1082
+ display: flex;
1083
+ flex-direction: row;
1084
+ align-items: center;
1085
+ text-align: left;
1086
+ justify-content: flex-end;
1087
+ gap: var(--gap-0row);
1088
+ width: 60px;
1089
+ }
879
1090
  .block02960Games {
880
1091
  display: flex;
881
1092
  flex-direction: row;
@@ -915,6 +1126,13 @@ export default {
915
1126
  line-height: 20px;
916
1127
  font-weight: 600;
917
1128
  }
1129
+ .numberPosition300 {
1130
+ position: relative;
1131
+ letter-spacing: 0.2px;
1132
+ line-height: 14px;
1133
+ font-weight: 600;
1134
+ font-size: 9px;
1135
+ }
918
1136
  .shapeIcon {
919
1137
  position: relative;
920
1138
  width: 17px;
@@ -936,6 +1154,11 @@ export default {
936
1154
  height: 28px;
937
1155
  object-fit: cover;
938
1156
  }
1157
+ .imgTeamIcon300 {
1158
+ position: relative;
1159
+ height: 20px;
1160
+ object-fit: cover;
1161
+ }
939
1162
  .teamName {
940
1163
  position: relative;
941
1164
  letter-spacing: 0.2px;
@@ -1043,6 +1266,16 @@ export default {
1043
1266
  font-size: var(--font-size-3xsrow);
1044
1267
  color: v-bind(fontColor);
1045
1268
  }
1269
+ .containerBtnVideos300Games {
1270
+ width: 60px;
1271
+ display: flex;
1272
+ flex-direction: row;
1273
+ align-items: center;
1274
+ justify-content: center;
1275
+ gap: var(--gap-6xsrow);
1276
+ font-size: 9px;
1277
+ color: v-bind(fontColor);
1278
+ }
1046
1279
  .containerBtnVideos620Games {
1047
1280
  width: 40px;
1048
1281
  display: flex;
@@ -1087,6 +1320,24 @@ export default {
1087
1320
  font-family: v-bind(fontFamily);
1088
1321
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
1089
1322
  }
1323
+ .rowTeam300 {
1324
+ align-self: stretch;
1325
+ height: 50px;
1326
+ display: flex;
1327
+ flex-direction: row;
1328
+ align-items: center;
1329
+ justify-content: flex-start;
1330
+ z-index: 1;
1331
+ text-align: right;
1332
+ background-color: v-bind(background);
1333
+ font-size: 10px;
1334
+ color: v-bind(fontColor);
1335
+ font-family: v-bind(fontFamily);
1336
+ padding-left: 8px;
1337
+ padding-right: 8px;
1338
+ box-sizing: border-box;
1339
+ gap: var(--gap-0row);
1340
+ }
1090
1341
  .rowTeam420 {
1091
1342
  align-self: stretch;
1092
1343
  height: 72px;
@@ -1167,6 +1418,14 @@ export default {
1167
1418
  align-items: center;
1168
1419
  justify-content: flex-start;
1169
1420
  }
1421
+ .containerLeftType1300 {
1422
+ display: flex;
1423
+ flex-direction: row;
1424
+ align-items: center;
1425
+ justify-content: flex-start;
1426
+ width: 100px;
1427
+ gap: 8px;
1428
+ }
1170
1429
  .containerLeftType1680 {
1171
1430
  display: flex;
1172
1431
  flex-direction: row;
@@ -1197,6 +1456,14 @@ export default {
1197
1456
  justify-content: flex-start;
1198
1457
  gap: var(--gap-baserow);
1199
1458
  }
1459
+ .positionContainertype1300 {
1460
+ width: 8px;
1461
+ display: flex;
1462
+ flex-direction: row;
1463
+ align-items: center;
1464
+ justify-content: flex-start;
1465
+ gap: var(--gap-6xsrow);
1466
+ }
1200
1467
  .positionContainertype1380 {
1201
1468
  width: 10px;
1202
1469
  display: flex;
@@ -1227,6 +1494,14 @@ export default {
1227
1494
  line-height: 20px;
1228
1495
  font-weight: 500;
1229
1496
  }
1497
+ .manchesterUnitedType1300 {
1498
+ position: relative;
1499
+ letter-spacing: 0.2px;
1500
+ line-height: 16px;
1501
+ font-weight: 500;
1502
+ font-size: 9px;
1503
+ width: 40px;
1504
+ }
1230
1505
  .manchesterUnitedType1460 {
1231
1506
  position: relative;
1232
1507
  letter-spacing: 0.2px;
@@ -1252,6 +1527,18 @@ export default {
1252
1527
  text-align: center;
1253
1528
  font-family: var(--font-poppins);
1254
1529
  }
1530
+ .containerRightType1300Games {
1531
+ flex: 1;
1532
+ display: flex;
1533
+ flex-direction: row;
1534
+ align-items: center;
1535
+ justify-content: flex-end;
1536
+ text-align: center;
1537
+ font-family: var(--font-poppins);
1538
+ width: auto;
1539
+ align-self: unset;
1540
+ gap: var(--gap-0row);
1541
+ }
1255
1542
  .containerRightType1420Games {
1256
1543
  align-self: stretch;
1257
1544
  flex: 1;
@@ -1281,6 +1568,14 @@ export default {
1281
1568
  align-items: center;
1282
1569
  justify-content: flex-start;
1283
1570
  }
1571
+ .teamNameWrapperType1300 {
1572
+ flex: 1;
1573
+ display: flex;
1574
+ flex-direction: row;
1575
+ align-items: center;
1576
+ justify-content: flex-start;
1577
+ width: 60px;
1578
+ }
1284
1579
  .teamNameWrapperType1960 {
1285
1580
  flex: 1;
1286
1581
  display: flex;
@@ -1302,6 +1597,14 @@ export default {
1302
1597
  align-items: center;
1303
1598
  justify-content: flex-start;
1304
1599
  }
1600
+ .ageWrapperType1300 {
1601
+ flex: 1;
1602
+ display: flex;
1603
+ flex-direction: row;
1604
+ align-items: center;
1605
+ justify-content: flex-start;
1606
+ display: none;
1607
+ }
1305
1608
  .ageWrapperType1680 {
1306
1609
  flex: 1;
1307
1610
  display: flex;
@@ -1326,6 +1629,9 @@ export default {
1326
1629
  line-height: 20px;
1327
1630
  font-weight: 500;
1328
1631
  }
1632
+ .ageType1300 {
1633
+ display: none;
1634
+ }
1329
1635
  .ageType1960 {
1330
1636
  display: none;
1331
1637
  }
@@ -1336,6 +1642,9 @@ export default {
1336
1642
  align-items: center;
1337
1643
  justify-content: flex-start;
1338
1644
  }
1645
+ .playedGamesWrapperType1300 {
1646
+ display: none;
1647
+ }
1339
1648
  .playedGamesWrapperType1680 {
1340
1649
  display: none;
1341
1650
  }
@@ -1349,6 +1658,10 @@ export default {
1349
1658
  line-height: 20px;
1350
1659
  font-weight: 500;
1351
1660
  }
1661
+ .playedGamesType1300 {
1662
+ text-align: center;
1663
+ display: none;
1664
+ }
1352
1665
  .playedGamesType1540 {
1353
1666
  text-align: center;
1354
1667
  display: none;
@@ -1366,6 +1679,13 @@ export default {
1366
1679
  align-items: center;
1367
1680
  justify-content: flex-start;
1368
1681
  }
1682
+ .playedMinutesWrapperType1300 {
1683
+ display: flex;
1684
+ flex-direction: row;
1685
+ align-items: center;
1686
+ justify-content: flex-start;
1687
+ flex: 1;
1688
+ }
1369
1689
  .playedMinutesWrapperType11086 {
1370
1690
  display: flex;
1371
1691
  flex-direction: row;
@@ -1380,6 +1700,9 @@ export default {
1380
1700
  line-height: 20px;
1381
1701
  font-weight: 500;
1382
1702
  }
1703
+ .playedMinutesType1300 {
1704
+ display: none;
1705
+ }
1383
1706
  .playedMinutesType1680 {
1384
1707
  display: none;
1385
1708
  }
@@ -1391,6 +1714,15 @@ export default {
1391
1714
  justify-content: flex-end;
1392
1715
  gap: var(--gap-5xlrow);
1393
1716
  }
1717
+ .block02Type1300Games {
1718
+ align-self: stretch;
1719
+ display: flex;
1720
+ flex-direction: row;
1721
+ align-items: center;
1722
+ justify-content: flex-end;
1723
+ gap: var(--gap-0row);
1724
+ width: 60px;
1725
+ }
1394
1726
  .block02Type1680Games {
1395
1727
  align-self: stretch;
1396
1728
  display: flex;
@@ -1424,6 +1756,9 @@ export default {
1424
1756
  align-items: center;
1425
1757
  justify-content: center;
1426
1758
  }
1759
+ .leagueNameWrapperType1300 {
1760
+ display: none;
1761
+ }
1427
1762
  .leagueNameWrapperType1680 {
1428
1763
  display: none;
1429
1764
  }
@@ -1444,7 +1779,9 @@ export default {
1444
1779
  width: 64px;
1445
1780
  flex-shrink: 0;
1446
1781
  }
1447
-
1782
+ .leagueNameType1300 {
1783
+ display: none;
1784
+ }
1448
1785
  .leagueNameType1960 {
1449
1786
  display: flex;
1450
1787
  position: relative;
@@ -1462,6 +1799,14 @@ export default {
1462
1799
  font-weight: 500;
1463
1800
  display: none;
1464
1801
  }
1802
+ .numberOfVideosType1300 {
1803
+ position: relative;
1804
+ letter-spacing: -0.03em;
1805
+ line-height: 120%;
1806
+ font-weight: 500;
1807
+ display: flex;
1808
+ font-size: 9px;
1809
+ }
1465
1810
  .numberOfVideosType1680 {
1466
1811
  position: relative;
1467
1812
  letter-spacing: -0.03em;
@@ -1506,6 +1851,13 @@ export default {
1506
1851
  line-height: 20px;
1507
1852
  font-weight: 600;
1508
1853
  }
1854
+ .numberPositionType1300 {
1855
+ position: relative;
1856
+ letter-spacing: 0.2px;
1857
+ line-height: 14px;
1858
+ font-weight: 600;
1859
+ font-size: 9px;
1860
+ }
1509
1861
  .shapeIconType1 {
1510
1862
  position: relative;
1511
1863
  width: 17px;