[WIP] Adding Sidebar on page Calendar

This commit is contained in:
megavrilinvv
2022-10-21 01:06:18 +03:00
parent 96b071294d
commit 071ef0e030
3 changed files with 36 additions and 3 deletions

View File

@@ -0,0 +1,31 @@
<template lang="pug">
.sidebar.flex.flex-col.bg-white
.sidebar-wrapper.h-full
.sidebar-content.items-center
base-button-plus
</template>
<script>
import BaseButtonPlus from "../../../components/base/buttons/BaseButtonPlus.vue";
export default {
components: {
BaseButtonPlus,
},
};
</script>
<style lang="sass" scoped>
.sidebar
width: 72px
.sidebar-wrapper
border-left: 2px solid var(--btn-blue-color-3)
margin: 13px 0
.sidebar-content
padding: 19px 16px
.button-plus
width: 40px
height: 40px
max-height: 40px
background: var(--btn-blue-color)
color: var(--default-white)
</style>