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

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,9 +1,10 @@
<template lang="pug">
.input-wrapper.flex.gap-x-2.px-3.box-border.w-max-fit(class="py-2.5")
textarea.place-input.w-full.outline-0.text-sm.not-italic.resize-none(
:rows="Math.ceil(value.length/heightInput)"
:value="value"
@input="$emit('update:value', $event.target.value)"
textarea.place-input.w-full.outline-0.text-sm.not-italic.resize-none.font-medium(
:rows="Math.ceil(value.length/heightInput)",
:value="value",
@input="$emit('update:value', $event.target.value)",
:placeholder="placeholder",
)
slot
</template>
@@ -15,6 +16,9 @@ export default {
value: String,
width: Number,
sharp: String,
placeholder: {
default: "Поиск",
},
},
computed: {