1
0
mirror of https://github.com/robonen/canvas-3d.git synced 2026-03-20 02:44:40 +00:00
Files
canvas-3d/src/layouts/default.vue
2022-11-10 04:57:11 +07:00

72 lines
1.2 KiB
Vue

<script setup lang="ts">
const showMenu = ref<boolean>(true);
</script>
<template>
<div class="wrapper">
<div class="content">
<button v-if="!showMenu" class="button" @click="showMenu = true">
<IconMenu/>
</button>
<template v-else>
<div class="controls">
<slot/>
</div>
<button class="button" @click="showMenu = false">
<IconHide/>
</button>
</template>
</div>
<canvas class="canvas"/>
</div>
</template>
<style scoped lang="scss">
.wrapper {
width: 100%;
height: 100%;
position: relative;
display: flex;
}
.content {
position: relative;
height: max-content;
padding: 20px;
display: flex;
column-gap: 16px;
max-height: 100%;
}
.controls {
position: relative;
box-sizing: border-box;
padding: 28px 24px;
background-color: white;
border-radius: 8px;
width: 480px;
max-height: calc(100% - 40px);
overflow: auto;
border: var(--border);
box-shadow: var(--shadow);
z-index: 2;
display: flex;
flex-direction: column;
row-gap: 24px;
}
.button {
margin-top: 8px;
z-index: 3;
}
.canvas {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
z-index: 1;
}
</style>