From 02bc4940bb698353ba67fe77c76c2b2a89b7296e Mon Sep 17 00:00:00 2001
From: cebgcontract <99630598+cebgcontract@users.noreply.github.com>
Date: Mon, 28 Feb 2022 16:39:28 +0800
Subject: [PATCH] =?UTF-8?q?=E6=89=8B=E6=9C=BA=E7=89=88=E9=A6=96=E9=A1=B5?=
=?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=90=88=E4=BD=9C=E4=BC=99=E4=BC=B4=E5=88=97?=
=?UTF-8?q?=E8=A1=A8?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/components/index/PartnerSection.vue | 26 +++++++++++++++++++++++++
src/views/mobile/Index.vue | 3 +++
2 files changed, 29 insertions(+)
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,