Files
Yi.Admin/Yi.Bbs.Vue3/src/layout/activity/components/ActivityBody.vue

37 lines
654 B
Vue
Raw Normal View History

2024-01-25 20:32:01 +08:00
<template>
<div class="sign-box">
<div class="menuList">
<ActivityNav/>
</div>
<div class="page">
<RouterView />
</div>
</div>
</template>
<script setup>
import ActivityNav from './ActivityNav.vue'
</script>
<style lang="scss" scoped>
.sign-box {
display: flex;
justify-content: space-between;
width: 1300px;
height: 100%;
padding: 20px 0 10px;
.menuList {
width: 20%;
height: 100%;
2025-08-04 23:29:25 +08:00
background-color: #1D1E1F;
border: 1px solid rgba(0, 255, 136, 0.2);
2024-01-25 20:32:01 +08:00
}
.page {
width: 75%;
height: 100%;
2025-08-04 23:29:25 +08:00
border: 1px solid rgba(0, 255, 136, 0.2);
background-color: #1D1E1F;
2024-01-25 20:32:01 +08:00
}
}
</style>