diff --git a/src/components/index/PartnerSection.vue b/src/components/index/PartnerSection.vue index 8c6e361..5050144 100644 --- a/src/components/index/PartnerSection.vue +++ b/src/components/index/PartnerSection.vue @@ -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; + } + } +} + diff --git a/src/views/mobile/Index.vue b/src/views/mobile/Index.vue index 5f906fd..d381a53 100644 --- a/src/views/mobile/Index.vue +++ b/src/views/mobile/Index.vue @@ -5,6 +5,7 @@ + @@ -16,10 +17,12 @@ import MobileCenterSection from '@/components/mobile/main/CenterSection.vue' import HeroSection from '@/components/index/HeroSection.vue' import InvestorsSection from '@/components/index/InvestorsSection.vue' import MobileFooter from '@/components/mobile/main/MobileFooter.vue' +import PartnerSection from '@/components/index/PartnerSection.vue' @Component({ name: 'MobileIndex', components: { + PartnerSection, MobileFooter, InvestorsSection, HeroSection,