Files
gpt-plus-gpt/web/frontend/src/layouts/BlankLayout.vue
2026-03-15 20:48:19 +08:00

16 lines
277 B
Vue

<template>
<div class="blank-layout">
<router-view />
</div>
</template>
<style scoped>
.blank-layout {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
</style>