.sidebar.flex.flex-col.bg-white(:class="openSidebar")
.sidebar-wrapper.h-full.my-13px.flex.flex-col.justify-between(:style="sidebarWidth")
.sidebar-content.items-center.flex.flex-col.gap-y-8.px-4.py-19px
q-btn(
color="primary",
round,
icon="add",
size="13px",
@click="openFormCreate",
v-if="!isOpen"
)
q-btn(
no-caps
label="Создать событие",
color="primary",
class="text-weight-medium, full-width",
icon-right="add",
@click="openFormCreate",
v-else
)
calendar-sidebar-event(:is-open="isOpen", :event-statuses="eventStatuses")
calendar-sidebar-teammate(:team-data="teamData", :is-open="isOpen", :url="url")
//.button-wrapper.flex.justify-center.mb-23px
q-btn(
round,
icon="east",
size="18px",
class="secondary",
padding="6px",
:style="{ transform: `rotate(${turnButton})`}",
@click="changeSize",
)