diff --git a/src/App.vue b/src/App.vue index 37d5c66..d45b4ab 100644 --- a/src/App.vue +++ b/src/App.vue @@ -203,4 +203,19 @@ button::after { margin-top: 20px; color: #fff9; } +.see-more { + display: flex; + align-items: center; + justify-content: center; + margin-top: 5px; +} +.see-more > text { + color: #39a8ff; + margin-top: 2px; + font-size: 13px; +} +.see-more > image { + width: 15px; + margin-top: 2px; +} diff --git a/src/components/AppBackground.vue b/src/components/AppBackground.vue index 160c042..6011659 100644 --- a/src/components/AppBackground.vue +++ b/src/components/AppBackground.vue @@ -5,11 +5,15 @@ const props = defineProps({ type: Number, default: 0, }, + bgColor: { + type: String, + default: "#050b19", + }, }); @@ -34,7 +44,6 @@ const props = defineProps({ left: 0; top: 0; z-index: -1; - background-color: #050b19; } .bg-image { diff --git a/src/components/Container.vue b/src/components/Container.vue index 10591b5..d0aafb9 100644 --- a/src/components/Container.vue +++ b/src/components/Container.vue @@ -32,6 +32,14 @@ defineProps({ type: Boolean, default: false, }, + bgColor: { + type: String, + default: "#050b19", + }, + whiteBackArrow: { + type: Boolean, + default: true, + }, }); const isIos = ref(true); const showHint = ref(false); @@ -67,8 +75,13 @@ const goBack = () => {