手机版首页增加合作伙伴列表

This commit is contained in:
cebgcontract 2022-02-28 16:39:28 +08:00
parent 9a88eb86c5
commit 02bc4940bb
2 changed files with 29 additions and 0 deletions

View File

@ -58,4 +58,30 @@ export default class PartnerSection extends Vue {
} }
} }
#partner-section.mobile{
height: unset;
padding-bottom: 10vw;
.title-bar{
width: 54vw;
height: 12vw;
margin-bottom: 10vw;
}
.partner-list{
margin-bottom: 5vw;
justify-content: space-between;
width: 80vw;
gap: 5vw;
.coso{
width: 16.4vw;
height: 16.4vw;
}
.kucoin{
width: 41vw;
}
.multiverse{
width: 20vw;
}
}
}
</style> </style>

View File

@ -5,6 +5,7 @@
<mobile-center-section></mobile-center-section> <mobile-center-section></mobile-center-section>
<hero-section></hero-section> <hero-section></hero-section>
<investors-section></investors-section> <investors-section></investors-section>
<partner-section></partner-section>
<mobile-footer></mobile-footer> <mobile-footer></mobile-footer>
</div> </div>
</template> </template>
@ -16,10 +17,12 @@ import MobileCenterSection from '@/components/mobile/main/CenterSection.vue'
import HeroSection from '@/components/index/HeroSection.vue' import HeroSection from '@/components/index/HeroSection.vue'
import InvestorsSection from '@/components/index/InvestorsSection.vue' import InvestorsSection from '@/components/index/InvestorsSection.vue'
import MobileFooter from '@/components/mobile/main/MobileFooter.vue' import MobileFooter from '@/components/mobile/main/MobileFooter.vue'
import PartnerSection from '@/components/index/PartnerSection.vue'
@Component({ @Component({
name: 'MobileIndex', name: 'MobileIndex',
components: { components: {
PartnerSection,
MobileFooter, MobileFooter,
InvestorsSection, InvestorsSection,
HeroSection, HeroSection,