@@ -131,6 +131,7 @@ main.about-container {
131
131
h5 ,
132
132
h6 {
133
133
color : var (--about-heading-color );
134
+ letter-spacing : 0 ;
134
135
}
135
136
136
137
> header {
@@ -575,9 +576,13 @@ main.about-container {
575
576
}
576
577
}
577
578
578
- #our_team-panel {
579
+ #our_team-panel ,
580
+ #our_partners-panel > div {
581
+ --team-grid-gap : 2.5rem ;
582
+ --team-card-padding : 1.5rem ;
583
+
579
584
display : grid ;
580
- gap : 2.5 rem ;
585
+ gap : var ( --team-grid-gap ) ;
581
586
grid-auto-flow : dense ;
582
587
grid-template-columns : [full- start] 1fr 1fr 1fr [full- end];
583
588
@@ -586,17 +591,30 @@ main.about-container {
586
591
grid-template-columns : [full- start] 1fr 1fr [full- end];
587
592
}
588
593
589
- > p {
594
+ > h4 ,
595
+ p {
590
596
grid-column : full;
591
597
margin : 0 ;
592
598
}
593
599
600
+ h4 ,
601
+ h5 {
602
+ font-size : 1.75rem ;
603
+ font-weight : 600 ;
604
+ margin : 0 ;
605
+ text-transform : none ;
606
+
607
+ @media (max-width : $screen-md ) {
608
+ font-size : 1rem ;
609
+ }
610
+ }
611
+
594
612
team-member {
595
613
background : var (--about-team-bg );
596
614
box-shadow : var (--about-team-shadow );
597
615
color : var (--about-team-color );
598
616
cursor : pointer ;
599
- padding : 1.5 rem ;
617
+ padding : var ( --team-card-padding ) ;
600
618
scroll-margin-top : calc (
601
619
var (--sticky-header-without-actions-height ) + 1.5rem
602
620
);
@@ -605,15 +623,9 @@ main.about-container {
605
623
grid-column : full;
606
624
}
607
625
608
- h4 {
609
- font-size : 1.75rem ;
610
- font-weight : 600 ;
611
- margin : 0 ;
626
+ h4 ,
627
+ h5 {
612
628
margin-bottom : 0.5rem ;
613
-
614
- @media (max-width : $screen-md ) {
615
- font-size : 1rem ;
616
- }
617
629
}
618
630
619
631
li :first-of-type {
@@ -624,6 +636,7 @@ main.about-container {
624
636
img {
625
637
aspect-ratio : 1 ;
626
638
margin : 0.5rem 0 ;
639
+ width : 100% ;
627
640
}
628
641
629
642
a [href ^= " https://github.com" ]
@@ -658,16 +671,21 @@ main.about-container {
658
671
align-content : start ;
659
672
cursor : unset ;
660
673
display : grid ;
661
- gap : 0 1.5 rem ;
674
+ gap : 0 var ( --team-card-padding ) ;
662
675
grid-column : span 2 ;
663
676
grid-template-areas :
664
- " name name name"
665
- " title title title"
666
- " picture bio bio"
667
- " . bio bio" ;
668
- grid-template-columns : 1fr 5rem 1fr ;
669
-
670
- h4 {
677
+ " name name"
678
+ " title title"
679
+ " picture bio"
680
+ " . bio" ;
681
+ grid-template-columns :
682
+ calc (
683
+ (100% - var (--team-grid-gap ) - 2 * var (--team-card-padding )) / 2
684
+ )
685
+ 1fr ;
686
+
687
+ h4 ,
688
+ h5 {
671
689
grid-area : name ;
672
690
}
673
691
@@ -682,7 +700,7 @@ main.about-container {
682
700
grid-area : picture;
683
701
}
684
702
685
- li :nth-of-type (3 ) {
703
+ li :nth-of-type (3 ):not ( :last-of-type ) {
686
704
align-self : end ;
687
705
grid-area : picture;
688
706
}
@@ -706,7 +724,7 @@ main.about-container {
706
724
" bio bio" ;
707
725
grid-template-columns : 1fr 1fr ;
708
726
709
- ul li :nth-of-type (3 ) {
727
+ ul li :nth-of-type (3 ):not ( :last-of-type ) {
710
728
align-self : start ;
711
729
grid-area : github;
712
730
@@ -724,7 +742,7 @@ main.about-container {
724
742
" bio" ;
725
743
grid-template-columns : 1fr ;
726
744
727
- ul li :nth-of-type (3 ) {
745
+ ul li :nth-of-type (3 ):not ( :last-of-type ) {
728
746
align-self : end ;
729
747
grid-area : picture;
730
748
@@ -737,6 +755,14 @@ main.about-container {
737
755
}
738
756
}
739
757
758
+ #our_partners-panel > div {
759
+ margin-top : 2.5rem ;
760
+
761
+ & :not (:last-of-type ) {
762
+ margin-bottom : 5rem ;
763
+ }
764
+ }
765
+
740
766
& [aria-labelledby = " global_impact" ] {
741
767
display : block ;
742
768
margin : var (--about-section-gap ) auto ;
0 commit comments