diff --git a/src/components/AppBackground.vue b/src/components/AppBackground.vue index 7d86962..cae3cf8 100644 --- a/src/components/AppBackground.vue +++ b/src/components/AppBackground.vue @@ -11,7 +11,7 @@ const bgs = ref(["../static/app-bg.png", "../static/app-bg2.png"]); @@ -27,11 +27,8 @@ const bgs = ref(["../static/app-bg.png", "../static/app-bg2.png"]); } .bg-image { - position: absolute; width: 100%; height: 100%; - left: 0; - top: 0; } .bg-overlay { @@ -42,8 +39,8 @@ const bgs = ref(["../static/app-bg.png", "../static/app-bg2.png"]); top: 0; background: linear-gradient( to bottom, - rgba(26, 26, 26, 0.8), - rgba(0, 0, 0, 0.8) + rgba(26, 26, 26, 0.2), + rgba(0, 0, 0, 0.2) ); } diff --git a/src/components/AppFooter.vue b/src/components/AppFooter.vue index 0a8b4fe..f107ccc 100644 --- a/src/components/AppFooter.vue +++ b/src/components/AppFooter.vue @@ -1,16 +1,16 @@ @@ -19,10 +19,9 @@ function handleTabClick(tabId) { +defineProps({ + src: { + type: String, + default: "", + }, + onClick: { + type: Function, + default: () => {}, + }, + frame: { + type: Boolean, + default: false, + }, + rank: { + type: Number, + default: 0, + }, +}); + + + + + diff --git a/src/components/Container.vue b/src/components/Container.vue index b75b1f9..7a76c57 100644 --- a/src/components/Container.vue +++ b/src/components/Container.vue @@ -7,7 +7,7 @@ defineProps({ default: "", }, bgType: { - type: String, + type: Number, default: 0, }, }); diff --git a/src/components/UserHeader.vue b/src/components/UserHeader.vue index 1aca91d..bc0e3bd 100644 --- a/src/components/UserHeader.vue +++ b/src/components/UserHeader.vue @@ -1,5 +1,6 @@ + + + + diff --git a/src/static/app-bg.png b/src/static/app-bg.png index f6237cc..92afcbf 100644 Binary files a/src/static/app-bg.png and b/src/static/app-bg.png differ diff --git a/src/static/winner-badge.png b/src/static/winner-badge.png new file mode 100644 index 0000000..24773ae Binary files /dev/null and b/src/static/winner-badge.png differ