mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-25 17:22:55 +00:00
25 lines
523 B
Vue
25 lines
523 B
Vue
<template>
|
|
<div class="main-layout h-full flex">
|
|
<div class="sidebar-container"><Sidebar /></div>
|
|
<div class="view-container">
|
|
<AppMain />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { Sidebar, AppMain } from '../components'
|
|
</script>
|
|
<style lang="scss">
|
|
.sidebar-container {
|
|
box-sizing: border-box;
|
|
transition: width 0.28s;
|
|
width: var(--sidebar-width);
|
|
min-width: var(--sidebar-width);
|
|
background-color: var(--sidebar-bg-color);
|
|
}
|
|
.view-container {
|
|
width: 100%;
|
|
}
|
|
</style>
|