File tree Expand file tree Collapse file tree 1 file changed +8
-16
lines changed
Expand file tree Collapse file tree 1 file changed +8
-16
lines changed Original file line number Diff line number Diff line change @@ -5,36 +5,28 @@ import { ISponsorLevelItem, ISponsorList } from '../../../interfaces/ISponsor'
55import { useTranslation } from 'react-i18next'
66import { Heading3 } from '../../../assets/styles/typo'
77import { DEFAULT_PROFILE_PATH } from '../../../data/constants/config'
8+ import { media } from '../../../assets/styles/mixin'
89
910const SponsorLevel = styled . div `
1011 margin-bottom: 6rem;
1112`
1213const SponsorGroup = styled . ul `
1314 display: flex;
1415 align-items: center;
15- margin: 0 ;
16- padding: 0 ;
17- margin-top: 3rem ;
18- @ media (max-width: 768px) {
16+ flex-wrap: wrap ;
17+ flex: auto ;
18+ gap: 2rem ;
19+ ${ media . mobile ( `
1920 flex-direction: column;
20- }
21+ ` ) }
2122`
2223
2324const SponsorItem = styled . li `
24- min-height: 100px;
2525 max-width: 200px;
26- margin: 0;
27- padding: 0;
26+ height: 200px;
2827 list-style: none;
29- display: flex;
28+ display: inline- flex;
3029 align-items: center;
31- & + & {
32- margin-left: 1.6rem;
33- @media (max-width: 768px) {
34- margin-left: 0;
35- margin-top: 2rem;
36- }
37- }
3830`
3931
4032const SponsorImage = styled . img `
You can’t perform that action at this time.
0 commit comments