File tree Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -370,7 +370,8 @@ export default {
370
370
</div >
371
371
<div class =" contributor-grid" >
372
372
<div
373
- v-for =" (contributor, index) in sortedContributors" :key =" index" class =" stats-table"
373
+ v-for =" (contributor, index) in sortedContributors"
374
+ :key =" index"
374
375
v-memo =" [sortedContributors, type]"
375
376
>
376
377
<div class =" ui top attached header gt-df gt-f1" >
@@ -406,13 +407,25 @@ export default {
406
407
<style scoped>
407
408
.main-graph {
408
409
height : 260px ;
410
+ padding-top : 2px ;
409
411
}
412
+
410
413
.contributor-grid {
411
414
display : grid ;
412
415
grid-template-columns : repeat (2 , 1fr );
413
416
gap : 1rem ;
414
417
}
415
418
419
+ .contributor-grid > * {
420
+ min-width : 0 ;
421
+ }
422
+
423
+ @media (max-width : 991.98px ) {
424
+ .contributor-grid {
425
+ grid-template-columns : repeat (1 , 1fr );
426
+ }
427
+ }
428
+
416
429
.contributor-name {
417
430
margin-bottom : 0 ;
418
431
}
You can’t perform that action at this time.
0 commit comments