Исправил позиционирование всплывающих окон, ограничение года календаря, бордеры сайдбара, фикс карточек ивентов, изменил стили карточки клиента

This commit is contained in:
megavrilinvv
2022-11-17 16:58:17 +03:00
parent 8f63ef9bea
commit 26dc8b37fa
17 changed files with 153 additions and 62 deletions

View File

@@ -1,6 +1,6 @@
<template lang="pug">
.wrapper.flex.w-full.relative.mx-6
clients-table(:open-form="openForm")
clients-table(:open-form="openForm", :current-year="currentYear")
</template>
<script>
@@ -10,6 +10,7 @@ export default {
components: { ClientsTable },
props: {
openForm: Function,
currentYear: Number,
},
};
</script>
@@ -17,4 +18,5 @@ export default {
<style lang="sass" scoped>
.wrapper
overflow: auto
border-top-left-radius: 4px
</style>