22 lines
391 B
Vue
22 lines
391 B
Vue
<template>
|
|
<v-navigation-drawer class="nav-drawer" permanent width="64">
|
|
</v-navigation-drawer>
|
|
</template>
|
|
|
|
<script setup>
|
|
|
|
</script>
|
|
|
|
<style scoped>
|
|
.tile {
|
|
width: 63px;
|
|
height: 64px;
|
|
padding: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-top: 1px solid rgba(255, 255, 255, 0.12);
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.12);
|
|
}
|
|
</style>
|