样式优化

This commit is contained in:
kron
2025-07-15 15:15:47 +08:00
parent 1d885f1a4f
commit 95426ffd07
4 changed files with 68 additions and 64 deletions

View File

@@ -16,7 +16,9 @@ const props = defineProps({
},
});
const nextLvlPoints = ref("");
const containerWidth = computed(() => (props.showRank ? "72%" : "100%"));
const containerWidth = computed(() =>
props.showRank ? "72%" : "calc(100% - 15px)"
);
const toUserPage = () => {
// 获取当前页面路径
const pages = getCurrentPages();