feat: 添加状态页面,更新相关导航项和样式

This commit is contained in:
Coldsmiles
2026-03-22 02:42:48 +08:00
parent aa1781ba7a
commit ea7ae6ad19
6 changed files with 25 additions and 4 deletions

19
src/pages/StatusPage.vue Normal file
View File

@@ -0,0 +1,19 @@
<template>
<iframe
class="iframe-fullpage"
src="https://mcphoto.infstar.cn/"
frameborder="0"
allowfullscreen
></iframe>
</template>
<style scoped>
.iframe-fullpage {
position: fixed;
top: var(--bl-header-height);
left: 0;
width: 100%;
height: calc(100vh - var(--bl-header-height));
border: none;
}
</style>