Files
Migu2.0/frontends/apps/simple-platform-vue/src/layouts/BlankLayout.vue
T

14 lines
270 B
Vue
Raw Normal View History

<template>
<div class="blank-layout">
<router-view />
</div>
</template>
<style scoped>
.blank-layout {
min-height: 100vh;
width: 100%;
background: linear-gradient(135deg, var(--mg-bg-app-1) 0%, var(--mg-bg-app-2) 50%, var(--mg-primary) 100%);
}
</style>