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

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">
.input-wrapper.flex.gap-x-2.px-4.box-border.py-10px(
:class="{'border-none': borderNone}",
:class="{'border-none': borderNone, 'date-input': dateInput}",
:style="{ minWidth: widthInput + 'px' }"
)
input.input.w-full.outline-0.not-italic(
@@ -39,6 +39,7 @@ export default {
borderNone: Boolean,
disabled: Boolean,
maxDate: String,
dateInput: Boolean,
},
};
</script>
@@ -61,4 +62,7 @@ export default {
border: none
.input
background-color: inherit
.date-input
// padding: 8px 12px
// max-height: 40px
</style>